Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit 2123d26

Browse files
authored
Hotfix chrome test (#19208)
* Adjust timing of test actions for Test Navigation - Selenium - Windows to toggle EASE mode timing is off, needs correction * Re-enable for Firefox
1 parent e155be6 commit 2123d26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/selenium/test_navigation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ def test_no_redirect_when_disabled(self):
1919
self.assertEqual(self.driver.current_url, kittens_url) # not https
2020

2121
def test_httpnowhere_blocks(self):
22-
if self.shim.browser_type == 'firefox':
23-
raise unittest.SkipTest('broken on firefox')
22+
# if self.shim.browser_type == 'firefox':
23+
# raise unittest.SkipTest('broken on firefox')
2424
href_script = 'return window.location.href;'
25-
self.toggle_http_nowhere()
2625
self.driver.get(http_url)
26+
self.toggle_http_nowhere()
2727
self.assertFalse(http_url == self.driver.execute_script(href_script))
2828

2929
def test_http_site_not_blocked(self):

0 commit comments

Comments
 (0)