diff --git a/tests/test_webdriver_remote.py b/tests/test_webdriver_remote.py index 31b5372cc..b2640c1cc 100644 --- a/tests/test_webdriver_remote.py +++ b/tests/test_webdriver_remote.py @@ -36,8 +36,8 @@ def test_support_with_statement(self): with Browser("remote", browser="firefox"): pass + @pytest.mark.skip(reason="Remote should not support custom user agent") def test_should_be_able_to_change_user_agent(self): - "Remote should not support custom user agent" pass @@ -55,8 +55,8 @@ def test_support_with_statement(self): with Browser("remote", browser="chrome"): pass + @pytest.mark.skip(reason="Remote should not support custom user agent") def test_should_be_able_to_change_user_agent(self): - "Remote should not support custom user agent" pass @@ -81,8 +81,8 @@ def test_support_with_statement(self): See setup browser """ + @pytest.mark.skip(reason="Remote should not support custom user agent") def test_should_be_able_to_change_user_agent(self): - "Remote should not support custom user agent" pass # ------- BEGIN OF MULTISESSION TESTS -------