English 中文(简体)
使用 Python 的 Webdriver( 2) 明显等待和隐含等待的问题
原标题:Problems with explicit wait and implicit wait in Selenium Webdriver (Selenium 2) using Python

我必须和一些非常缓慢的代理人合作 偶尔被卡住。所以我试图找到一个解决方案/ 解决,这就是我的问题:

from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait

browser = webdriver.Firefox()
browser.get("http://whateversite.com")

element = browser.find_element_by_id("element")
element.click() # go to page http://whateversite.com/page.html

new_element = browser.find_element_by_id("newElement")

不论您是否设置了 browser. immpcillially_wait(30) 之前先设置或使用 new_ement = WebDriver Wait(browser,30)。 直到( lambda 浏览器 : 浏览器. find_ element_by_ id (“ newElement” )) 它只是卡住了, 有时甚至卡住了 HOURS。 似乎要等待该页面 http://whateversite. com/ page.html 来完全装载在极端情况下可能需要几个小时的某个情况。

我该如何避免呢?

问题回答

try to use unstable load strategy. For exampleFirefoxProfile profile = new FirefoxProfile(); profile.setPreference("webdriver.load.strategy", "unstable"); WebDriver driver = new FirefoxDriver(profile); ` You can find more information at http://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#current-document-readiness

也尝试此选项 。 driver. manage (. timeout (). page LoadTimeout (30, Time United. SECONDS) ; < a href="http://selenium.googlecode.com/svn/trunk/docs/api/java/org/openqa/selenium/WebDriver.Timeout.html#pageLoadTimeout%28lo,%20java. util.contil.context.%29" rel="noformate.gleco/com/svn/trunk/docs/api/java/org/openqa/selenium/ Webriver.Timeout.html# page LoadTimeout%28 long,% 20java. utel.contium.TimeUn%29

我还没有看到这个问题的好答案,所以我想我应该给自己一个解决办法。我遇到过很多次了,我用的是用和黑客做手脚,我用的是预期。期望是一种非常简单的基于tcl的语言,它让你很容易生成其他程序,等待输入或超时,然后做一些事情。所以基本上,我不用使用sel s waits,我创造了一个功能,用 python s s sleep 来等待:

import time

def wait(waittime=30):
  print  kick 
  time.sleep(waittime)

..

然后,我创造运行。 解释:

set timeout 30
set try 0

while 1 {
    spawn /usr/bin/python test.py
        while 1 {
            expect "kick" {exp_continue}
            timeout {
                if {$try > 5} {
                    exit
                }
                incr try
            }
        }
    }
}

所有这一切,通常效果都很好, 基本上如果挂起, 它会尝试重新启动程序。 在5次尝试后, 它会自杀。 您还可以有更多的控制 来控制如何在不同的状态重新启动您的程序等 。





相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签