Selenium Python - 处理没有这样的元素异常

时间:2016-06-24 21:56:49

标签: python python-3.x selenium selenium-webdriver

我正在使用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']"}

5 个答案:

答案 0 :(得分:17)

您没有导入例外吗?

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

答案 1 :(得分:8)

你这样做的方式很好..你只是想抓住错误的例外。它的名称为NoSuchElementException而不是nosuchelementexception

答案 2 :(得分:6)

您可以查看该元素是否存在,然后单击该元素。无需例外。请注意.find_elements_*中的复数“s”。

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

答案 3 :(得分:0)

从selenium.common.exceptions导入NoSuchElementException对我来说很好,解决了问题

答案 4 :(得分:-1)

为什么不简化和使用这样的逻辑?不需要例外。

if elem.is_displayed():
    elem.click()