63

试图找到一种在 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),但我不确定它是否会导致所需的行为。

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

编辑

根据@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

4 回答 4

116

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

Firefox 和 Chrome 驱动程序

driver.set_page_load_timeout(30)

其他: :

driver.implicitly_wait(30)

TimeoutException只要页面加载时间超过 30 秒,就会抛出一个。

于 2013-07-08T21:46:27.070 回答
9

最好的方法是设置偏好:

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/")
于 2015-04-29T23:15:25.560 回答
7

可以在此处找到有关显式和隐式等待的信息。

更新

在java中我看到了这个,基于这个

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等价物。

于 2013-07-08T18:34:00.400 回答
4

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

#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() 是一个函数

于 2015-07-20T15:35:17.580 回答