Skip to content

Commit f765f19

Browse files
committed
[py] Remove Exclusion of Chromium from Network BiDi tests
1 parent d50a168 commit f765f19

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

py/test/selenium/webdriver/common/bidi_network_tests.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ def callback(request: Request):
6868
assert driver.find_element(By.NAME, "login").is_displayed(), "Request not continued"
6969

7070

71-
@pytest.mark.xfail_chrome
72-
@pytest.mark.xfail_edge
7371
def test_continue_request(driver, pages):
7472
def callback(request: Request):
7573
request.continue_request()
@@ -80,17 +78,13 @@ def callback(request: Request):
8078
assert driver.find_element(By.NAME, "login").is_displayed(), "Request not continued"
8179

8280

83-
@pytest.mark.xfail_chrome
84-
@pytest.mark.xfail_edge
8581
def test_continue_with_auth(driver):
8682
callback_id = driver.network.add_auth_handler("user", "passwd")
8783
assert callback_id is not None, "Request handler not added"
8884
driver.get("https://httpbin.org/basic-auth/user/passwd")
8985
assert "authenticated" in driver.page_source, "Authorization failed"
9086

9187

92-
@pytest.mark.xfail_chrome
93-
@pytest.mark.xfail_edge
9488
def test_remove_auth_handler(driver):
9589
callback_id = driver.network.add_auth_handler("user", "passwd")
9690
assert callback_id is not None, "Request handler not added"

0 commit comments

Comments
 (0)