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 de2f299 commit c9249e1Copy full SHA for c9249e1
tests/preferences/test_clear_cookie_data.py
@@ -13,7 +13,7 @@
13
def test_case():
14
return "143627"
15
16
-
+WEBSITE_ADDRESS = "https://www.wikipedia.com"
17
WIN_GHA = environ.get("GITHUB_ACTIONS") == "true" and sys.platform.startswith("win")
18
19
@@ -35,7 +35,7 @@ def test_clear_cookie_data(driver: Firefox):
35
wait = WebDriverWait(driver, 10, poll_frequency=0.5)
36
37
# Visit a site to get a cookie added to saved data
38
- driver.get("https://www.wikipedia.com")
+ driver.get(WEBSITE_ADDRESS)
39
40
# Navigate to the clear data dialog of about:preferences#privacy
41
# Check for a non-zero value of the 'Cookies and site data' option
0 commit comments