如何设置Selenium Python WebDriver默认超时?

时间:2013-07-08 17:57:33

标签: python firefox selenium timeout selenium-webdriver

尝试在Selenium Python WebDriver中找到设置命令执行延迟的最大时间限制的好方法。理想情况下,如:

my_driver = get_my_driver()
my_driver.set_timeout(30) # seconds
my_driver.get('http://www.example.com') # stops / throws exception when time is over 30     seconds

会奏效。我找到了.implicitly_wait(30),但我不确定它是否会产生预期的行为。

如果它有用,我们专门使用WebDriver for Firefox。

修改

根据@ amey的回答,这可能有用:

ff = webdriver.Firefox()
ff.implicitly_wait(10) # seconds
ff.get("http://somedomain/url_that_delays_loading")
myDynamicElement = ff.find_element_by_id("myDynamicElement")

但是,我不清楚隐式等待是否同时适用于get(这是所需的功能)和find_element_by_id

非常感谢!

4 个答案:

答案 0 :(得分:80)

在python中,为要加载的页面创建超时的方法是:

driver.set_page_load_timeout(30)

对于chromedriver

driver.implicitly_wait(30)

每当页面加载超过30秒时,这将抛出TimeoutException

答案 1 :(得分:5)

可以找到有关显式和隐式等待的信息here

<强>更新

在java中,我看到了这一点,基于this

WebDriver.Timeouts pageLoadTimeout(long time,
                                 java.util.concurrent.TimeUnit unit)

Sets the amount of time to wait for a page load to complete before throwing an error. If the timeout is negative, page loads can be indefinite.

Parameters:
    time - The timeout value.
    unit - The unit of time.

不确定python等价物。

答案 2 :(得分:5)

最好的方法是设置首选项:

fp = webdriver.FirefoxProfile()
fp.set_preference("http.response.timeout", 5)
fp.set_preference("dom.max_script_run_time", 5)
driver = webdriver.Firefox(firefox_profile=fp)

driver.get("http://www.google.com/")

答案 3 :(得分:2)

我的解决方案是在浏览器加载事件旁边运行一个异步线程,让它关闭浏览器并在超时时重新调用加载函数。

#Thread
def f():
    loadStatus = true
    print "f started"
    time.sleep(90)
    print "f finished"
    if loadStatus is true:
        print "timeout"
        browser.close()
        call()

#Function to load
def call():
    try:
        threading.Thread(target=f).start()
        browser.get("http://website.com")
        browser.delete_all_cookies()
        loadStatus = false
    except:
        print "Connection Error"
        browser.close()
        call()

Call()是一个只有

的函数