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 bd72485 commit ccde21aCopy full SHA for ccde21a
docs_source_files/content/webdriver/page_loading_strategy.es.md
@@ -57,7 +57,15 @@ public class pageLoadStrategy {
57
}
58
{{< / code-panel >}}
59
{{< code-panel language="python" >}}
60
-# Please raise a PR
+from selenium import webdriver
61
+from selenium.webdriver.chrome.options import Options
62
+options = Options()
63
+options.page_load_strategy = 'normal'
64
+driver = webdriver.Chrome(options=options)
65
+# Navigate to url
66
+driver.get("http://www.google.com")
67
+driver.quit()
68
+
69
70
{{< code-panel language="c#" >}}
71
using OpenQA.Selenium;
0 commit comments