既然我知道有时候我肯定会需要WebDriverWait,这是否意味着我需要在unittest
setUp方法中摆脱implicit_wait,而每次使用任何find_element_by_方法时都要使用WebDriverWait?
是。正如您在链接到的问题中所看到的那样,如果您同时使用两种类型的等待,则会遇到不良行为。这不只是理论上的。我亲身经历了这种行为,尝试对其进行调试,找到您链接的问题,然后从我的测试套件中删除了所有隐式等待。
我开发了一个库来帮助设置显式等待(并执行其他 *** 作)。假设您已经有一个
driver具有硒Web驱动程序的对象:
from selenium.webdriver.common.by import Byimport selenic.utilutil = selenic.util.Util(driver)# This goes through util and uses the explicit wait set by util.foo = util.find_element((By.CSS_SELECTOR, "..."))# For special cases that take longer to give results.with util.local_timeout(10): # The timeout is set to 10 for calls in this with block. bar = util.find_element(...)# The timeout is restored to what it was just before the with.
有时候,您根本不需要使用等待,因为 从逻辑上讲, 如果元素A存在,那么元素B也存在,因此您不必 等待
。例如。如果您希望已经从Selenium获得的元素的父元素,可以执行
parent = foo.find_element_by_xpath("..")。
至于的行为
find_elements,它会在确定有结果要返回时立即返回。这可能意味着,如果以后的元素在
find_elements找到返回值后才出现,则只会得到一个元素。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)