Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5e3984c

Browse files
author
Baiju Muthukadan
committed
link to waits
1 parent 61f521a commit 5e3984c

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

source/navigating.rst

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,18 @@ Navigating
44
----------
55

66
The first thing you'll want to do with WebDriver is navigate to a
7-
page. The normal way to do this is by calling "get":
7+
link. The normal way to do this is by calling ``get`` method:
88

99
::
1010

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

1313
WebDriver will wait until the page has fully loaded (that is, the
14-
"onload" event has fired) before returning control to your test or
14+
``onload`` event has fired) before returning control to your test or
1515
script. It's worth noting that if your page uses a lot of AJAX on
1616
load then WebDriver may not know when it has completely loaded. If
1717
you need to ensure such pages are fully loaded then you can use
18-
"waits".
19-
20-
.. TODO: link to a section on explicit waits in WebDriver
21-
18+
`waits <http://docs.seleniumhq.org/docs/04_webdriver_advanced.jsp#explicit-and-implicit-waits>`_.
2219

2320
Interacting with the page
2421
~~~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)