Selenium webdriver find_element_by_xpath需要时间

时间:2012-07-25 08:26:40

标签: python selenium webdriver

如果页面上不存在元素find_element_by_xpath()需要花费太多时间挂起测试执行。有没有办法在python中将超时设置为find_element_by_xpath()函数?

1 个答案:

答案 0 :(得分:1)

您可以使用此代码设置implicit wait -

ff = webdriver.Firefox()
ff.implicitly_wait(10) # seconds

这使得WebDriver在您尝试在网页上找到元素时出现错误之前等待10秒。