Selenium Python - 处理没有此类元素异常

问题描述 投票:0回答:5

我正在使用 Python 在 Selenium 中编写自动化测试。一个元素可能存在也可能不存在。我试图用下面的代码来处理它,它在元素存在时起作用。但是当元素不存在时脚本会失败,如果元素不存在我想继续下一条语句。

try:
       elem = driver.find_element_by_xpath(".//*[@id='SORM_TB_ACTION0']")
       elem.click()
except nosuchelementexception:
       pass

错误 -

selenium.common.exceptions.NoSuchElementException: Message: Unable to locate element:{"method":"xpath","selector":".//*[@id='SORM_TB_ACTION0']"}
python python-3.x selenium selenium-webdriver
5个回答
88
投票

您没有导入异常吗?

from selenium.common.exceptions import NoSuchElementException

try:
    elem = driver.find_element_by_xpath(".//*[@id='SORM_TB_ACTION0']")
    elem.click()
except NoSuchElementException:  #spelling error making this code not work as expected
    pass

28
投票

您可以查看该元素是否存在,如果存在则单击它。无需例外。注意

.find_elements_*
中的复数“s”。

elem = driver.find_elements_by_xpath(".//*[@id='SORM_TB_ACTION0']")
if len(elem) > 0
    elem[0].click()

14
投票

你这样做的方式很好......你只是想捕捉错误的异常。它被命名为

NoSuchElementException
而不是
nosuchelementexception


2
投票

处理 Selenium NoSuchExpressionException

from selenium.common.exceptions import NoSuchElementException
try:
   elem = driver.find_element_by_xpath
   candidate_Name = j.find_element_by_xpath('.//span[@aria-hidden="true"]').text
except NoSuchElementException:
       try:
          candidate_Name = j.find_element_by_xpath('.//a[@class="app-aware link"]').text
       except NoSuchElementException:
              candidate_Name = "NAN"
              pass

-2
投票

为什么不简化并使用这样的逻辑呢?无需例外。

if elem.is_displayed():
    elem.click()
© www.soinside.com 2019 - 2024. All rights reserved.