标签:
有时候为了保证脚步运行的稳定性,需要在脚本中添加等待时间
wait=WebDriverWait(webdriver.chrome(),30)
ele=wait.until(lambda x:x.find_element_by_xpath(Xpath))
ele.click()
判断元素存在与否:
def isPresent(self):
try:
driver.find_element_by_xpath(Xpath)
excep NoSuchElementException,e:
return False
else:
return True
标签:
原文地址:http://www.cnblogs.com/saryli/p/4293670.html