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 e7106da commit f29aaeaCopy full SHA for f29aaea
tests/tabs/test_mute_tabs.py
@@ -1,3 +1,5 @@
1
+from os import environ
2
+
3
import pytest
4
from selenium.webdriver import Firefox
5
from selenium.webdriver.common.by import By
@@ -21,6 +23,10 @@ def add_to_prefs_list():
21
23
return [("network.cookie.cookieBehavior", "2")]
22
24
25
26
+GHA = environ.get("GITHUB_ACTIONS") == "true"
27
28
29
+@pytest.mark.skipif(GHA, reason="Test unstable in Github Actions")
30
@pytest.mark.audio
31
def test_mute_unmute_tab(screenshot, driver: Firefox, video_url: str):
32
"""C134719, test that tabs can be muted and unmuted"""
0 commit comments