Skip to content

Commit 1b0a879

Browse files
committed
[py] Add tests for add/remove_request_handler
1 parent be6a568 commit 1b0a879

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed
+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Licensed to the Software Freedom Conservancy (SFC) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The SFC licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
import pytest
18+
import trio
19+
20+
from selenium.webdriver.common.bidi.cdp import open_cdp
21+
from selenium.webdriver.common.bidi.network import BeforeRequestSentParameters
22+
from selenium.webdriver.common.bidi.network import ContinueRequestParameters
23+
24+
@pytest.mark.xfail_firefox
25+
@pytest.mark.xfail_safari
26+
@pytest.mark.xfail_edge
27+
async def test_add_request_handler(driver):
28+
29+
def request_filter(params: BeforeRequestSentParameters):
30+
return params.request["url"] == "https://www.example.com/"
31+
32+
def request_handler(params: BeforeRequestSentParameters):
33+
request = params.request["request"]
34+
json = {"request": request, "url": "https://www.selenium.dev/about/"}
35+
return ContinueRequestParameters(**json)
36+
37+
ws_url = driver.caps.get("webSocketUrl")
38+
async with open_cdp(ws_url) as conn:
39+
async with trio.open_nursery() as nursery:
40+
nursery.start_soon(
41+
driver.network.add_request_handler,
42+
request_filter,
43+
request_handler,
44+
conn,
45+
)
46+
await trio.sleep(1)
47+
await driver.network.get("https://www.example.com", conn)
48+
assert "Selenium" in driver.title
49+
await trio.sleep(1)
50+
await driver.network.remove_request_handler()
51+
await driver.network.get("https://www.example.com", conn)
52+
assert "Example" in driver.title

0 commit comments

Comments
 (0)