selenium中,运行测试用例,报NosuchElementException错误,用try --except 捕获异常

Posted 成都-Joan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium中,运行测试用例,报NosuchElementException错误,用try --except 捕获异常相关的知识,希望对你有一定的参考价值。

try:

      ele=driver.find_element_by_name(‘kw‘)

except  NosuchElementException as msg:

      print ‘查找元素异常原因:%s‘%msg

else:
      ele.click()

 

selenium常见异常

1.NoSuchElementException:没有找到元素

2.NoSuchFrameException:没有找到iframe

3.NoSuchWindowException:没找到窗口句柄handle

4.NoSuchAttributeException:属性错误

5.NoAlertPresentException:没找到alert弹出框

6.lementNotVisibleException:元素不可见

7.ElementNotSelectableException:元素没有被选中

8.TimeoutException:查找元素超时

 

以上是关于selenium中,运行测试用例,报NosuchElementException错误,用try --except 捕获异常的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Chrome 中运行 Selenium WebDriver 测试用例

如何为centos 6.6设置chromedriver工作以在python中运行selenium测试用例

关于虫师的pdf中python+selenium的多进程执行测试用例失败的问题

用Selenium IDE构建测试用例

Selenium 网格 - 测试不是并行运行,而是在每个模拟器上运行两次

selenium之批量执行测试用例