Skip to content

Commit cbc52b2

Browse files
Delta456diemol
authored andcommitted
[py] remove xfail_remote for cookie test (SeleniumHQ#14995)
* Revert "add alias attr to all edge structs" This reverts commit f17dd08dd32998a310510f0abc44e5b484202a4d. * [py] remove xfail_remote for cookie test * revert --------- Co-authored-by: Diego Molina <[email protected]>
1 parent dbfaaa3 commit cbc52b2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

py/test/selenium/webdriver/common/cookie_tests.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,21 +80,18 @@ def test_add_cookie(cookie, driver):
8080
assert cookie["name"] in returned
8181

8282

83-
@pytest.mark.xfail_remote(reason="sameSite cookie attribute not implemented")
8483
def test_add_cookie_same_site_strict(same_site_cookie_strict, driver):
8584
driver.add_cookie(same_site_cookie_strict)
8685
returned = driver.get_cookie("foo")
8786
assert "sameSite" in returned and returned["sameSite"] == "Strict"
8887

8988

90-
@pytest.mark.xfail_remote(reason="sameSite cookie attribute not implemented")
9189
def test_add_cookie_same_site_lax(same_site_cookie_lax, driver):
9290
driver.add_cookie(same_site_cookie_lax)
9391
returned = driver.get_cookie("foo")
9492
assert "sameSite" in returned and returned["sameSite"] == "Lax"
9593

9694

97-
@pytest.mark.xfail_remote(reason="sameSite cookie attribute not implemented")
9895
def test_add_cookie_same_site_none(same_site_cookie_none, driver):
9996
driver.add_cookie(same_site_cookie_none)
10097
# Note that insecure sites (http:) can't set cookies with the Secure directive.

0 commit comments

Comments
 (0)