We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f66a3d commit 4d3a07fCopy full SHA for 4d3a07f
1 file changed
README.md
@@ -153,6 +153,14 @@ Please note that network traffic is not cleared when you visit new page. You can
153
manually clear the network traffic by calling `page.driver.clear_network_traffic`
154
or `page.driver.reset`
155
156
+* `page.driver.wait_for_reload` unlike `wait_for_network_idle` will wait until
157
+the whole page is reloaded or raise a timeout error. It's useful when you know
158
+that for example after clicking autocomplete suggestion you expect page to be
159
+reloaded, you have a few choices - put sleep or wait for network idle, but both
160
+are bad. Sleep makes you wait longer or less than needed, network idle can
161
+return earlier even before the whole page is started to reload. Here's the
162
+rescue.
163
+
164
165
## Manipulating cookies
166
0 commit comments