1.当元素不存在的话,通常会抛出NoSuchElementException 导致测试失败,但有时候,我们需要去确保页面元素不存在,才是我们正确的验收条件下面的方法可以用来判定页面元素是否存在
Python版本
def isPresent(self):
try:
driver.find_element_by_xpath(Xpath)
except NoSuchElementException, e:
return False
return True
1.当元素不存在的话,通常会抛出NoSuchElementException 导致测试失败,但有时候,我们需要去确保页面元素不存在,才是我们正确的验收条件下面的方法可以用来判定页面元素是否存在
Python版本
def isPresent(self):
try:
driver.find_element_by_xpath(Xpath)
except NoSuchElementException, e:
return False
return True