验证某个元素在页面中不存在
定义函数:
def test_verify_not(self,location): # 验证元素不存在
try:
driver.find_element.find_element_by_xpath(location)
a=True
except:
a=False
if a == False:
pass
else:
basepage.screen_capture() # 截屏
print("ERROR:",screen_name)
验证某个元素在页面中不存在
定义函数:
def test_verify_not(self,location): # 验证元素不存在
try:
driver.find_element.find_element_by_xpath(location)
a=True
except:
a=False
if a == False:
pass
else:
basepage.screen_capture() # 截屏
print("ERROR:",screen_name)
本文标题:2018-02-28 验证元素在页面中不存在
本文链接:https://www.haomeiwen.com/subject/quxbxftx.html
网友评论