浏览代码

Merge pull request #310 from juanpex/master

fix documentation testing of Selenium WebDriverWait
Florian Apolloner 12 年之前
父节点
当前提交
785980d30e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/topics/testing.txt

+ 1 - 1
docs/topics/testing.txt

@@ -2039,7 +2039,7 @@ out the `full reference`_ for more details.
             self.selenium.find_element_by_xpath('//input[@value="Log in"]').click()
             # Wait until the response is received
             WebDriverWait(self.selenium, timeout).until(
-                lambda driver: driver.find_element_by_tag_name('body'), timeout=10)
+                lambda driver: driver.find_element_by_tag_name('body'))
 
     The tricky thing here is that there's really no such thing as a "page load,"
     especially in modern Web apps that generate HTML dynamically after the