From f765f19d9b468cacafa783c97c8072a48aaae5c9 Mon Sep 17 00:00:00 2001 From: Simon Benzer Date: Wed, 25 Jun 2025 21:11:30 -0400 Subject: [PATCH] [py] Remove Exclusion of Chromium from Network BiDi tests --- py/test/selenium/webdriver/common/bidi_network_tests.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/py/test/selenium/webdriver/common/bidi_network_tests.py b/py/test/selenium/webdriver/common/bidi_network_tests.py index 5fc168a36503a..3947fa993f561 100644 --- a/py/test/selenium/webdriver/common/bidi_network_tests.py +++ b/py/test/selenium/webdriver/common/bidi_network_tests.py @@ -68,8 +68,6 @@ def callback(request: Request): assert driver.find_element(By.NAME, "login").is_displayed(), "Request not continued" -@pytest.mark.xfail_chrome -@pytest.mark.xfail_edge def test_continue_request(driver, pages): def callback(request: Request): request.continue_request() @@ -80,8 +78,6 @@ def callback(request: Request): assert driver.find_element(By.NAME, "login").is_displayed(), "Request not continued" -@pytest.mark.xfail_chrome -@pytest.mark.xfail_edge def test_continue_with_auth(driver): callback_id = driver.network.add_auth_handler("user", "passwd") assert callback_id is not None, "Request handler not added" @@ -89,8 +85,6 @@ def test_continue_with_auth(driver): assert "authenticated" in driver.page_source, "Authorization failed" -@pytest.mark.xfail_chrome -@pytest.mark.xfail_edge def test_remove_auth_handler(driver): callback_id = driver.network.add_auth_handler("user", "passwd") assert callback_id is not None, "Request handler not added"