diff --git a/py/test/selenium/webdriver/common/cookie_tests.py b/py/test/selenium/webdriver/common/cookie_tests.py index b8e4b479e9305..b3aadebe420b1 100644 --- a/py/test/selenium/webdriver/common/cookie_tests.py +++ b/py/test/selenium/webdriver/common/cookie_tests.py @@ -80,21 +80,18 @@ def test_add_cookie(cookie, driver): assert cookie["name"] in returned -@pytest.mark.xfail_remote(reason="sameSite cookie attribute not implemented") def test_add_cookie_same_site_strict(same_site_cookie_strict, driver): driver.add_cookie(same_site_cookie_strict) returned = driver.get_cookie("foo") assert "sameSite" in returned and returned["sameSite"] == "Strict" -@pytest.mark.xfail_remote(reason="sameSite cookie attribute not implemented") def test_add_cookie_same_site_lax(same_site_cookie_lax, driver): driver.add_cookie(same_site_cookie_lax) returned = driver.get_cookie("foo") assert "sameSite" in returned and returned["sameSite"] == "Lax" -@pytest.mark.xfail_remote(reason="sameSite cookie attribute not implemented") def test_add_cookie_same_site_none(same_site_cookie_none, driver): driver.add_cookie(same_site_cookie_none) # Note that insecure sites (http:) can't set cookies with the Secure directive.