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 79effc3 commit f7005e2Copy full SHA for f7005e2
tests/tabs/test_mute_tabs.py
@@ -11,6 +11,7 @@
11
COOKIE_CONSENT_SELECTOR = (
12
"button[aria-label^='Accept all'], button[aria-label^='Accept the use']"
13
)
14
+WIN_GHA = environ.get("GITHUB_ACTIONS") == "true" and sys.platform.startswith("win")
15
16
17
@pytest.fixture()
@@ -23,9 +24,6 @@ def add_to_prefs_list():
23
24
return [("network.cookie.cookieBehavior", "2")]
25
26
-WIN_GHA = environ.get("GITHUB_ACTIONS") == "true" and sys.platform.startswith("win")
27
-
28
29
@pytest.mark.skipif(WIN_GHA, reason="Test unstable on Windows in Github Actions")
30
@pytest.mark.audio
31
def test_mute_unmute_tab(screenshot, driver: Firefox, video_url: str):
0 commit comments