selenium--判断页面元素是否存在

Posted aanb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium--判断页面元素是否存在相关的知识,希望对你有一定的参考价值。


用于测试的网址:
http://www.sogou.com
调用API的实例代码:
def isElementPresent(self,by,value):
#从selenium.common.exceptions 模块导入 NoSuchElementException类
from selenium.common.exceptions import NoSuchElementException
try:
element = self.driver.find_element(by = by, value= value)
#原文是except NoSuchElementException, e:
except NoSuchElementException as e:
#打印异常信息
print(e)
#发生了NoSuchElementException异常,说明页面中未找到该元素,返回False
return False
else:
#没有发生异常,表示在页面中找到了该元素,返回True
return True

def test_isElementPresent(self):
url = "http://www.sogou.com"
#访问sogou首页
self.driver.get(url)
#判断页面元素ID属性值为"query"的页面元素是否存在
res = self.isElementPresent(‘id‘,‘query‘)
if res is True:
print(u‘所查找的元素存在于页面上‘)
else:
print(u‘页面中未找到所需要的元素‘)
摘自《Selenium WebDriver 3.0自动化测试框架实战指南》--吴晓华 王晨昕 编著





























以上是关于selenium--判断页面元素是否存在的主要内容,如果未能解决你的问题,请参考以下文章

WebDriver(Selenium2)判断元素是不是存在。

Selenium(二十):expected_conditions判断页面元素

Python Selenium.WebDriverWait 判断元素是否存在

selenium常用的API判断元素是否可见

selenium怎么判断元素的值

selenium+java 元素有时存在 有时不存在,怎么处理