Selenium Python -处理无此类元素异常

piv4azn7  于 2023-01-22  发布在  Python
关注(0)|答案(5)|浏览(126)

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

nnvyjq4y1#

不导入异常吗?

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
wlzqhblo

wlzqhblo2#

你可以查看元素是否存在,如果存在就点击它。不需要例外。注意.find_elements_*中的复数“s”。

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

xt0899hw3#

你这样做是好的..你只是试图捕捉错误的异常。它被命名为NoSuchElementException而不是nosuchelementexception

qzwqbdag

qzwqbdag4#

  • 处理 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
dluptydi

dluptydi5#

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

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

相关问题