File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -4,21 +4,18 @@ Navigating
4
4
----------
5
5
6
6
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 :
8
8
9
9
::
10
10
11
11
driver.get("http://www.google.com")
12
12
13
13
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
15
15
script. It's worth noting that if your page uses a lot of AJAX on
16
16
load then WebDriver may not know when it has completely loaded. If
17
17
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 >`_.
22
19
23
20
Interacting with the page
24
21
~~~~~~~~~~~~~~~~~~~~~~~~~
You can’t perform that action at this time.
0 commit comments