Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /webdriver/bidi/browsing_context/navigate/error.py - WPT Dashboard Interop Dashboard
from copy import deepcopy
import pytest
from tests.bidi.browsing_context.navigate import navigate_and_assert
pytestmark = pytest.mark.asyncio
async def test_insecure_certificate(
configuration, url, create_custom_profile, geckodriver
):
# Create a fresh profile without any item in the certificate storage so that
# loading a HTTPS page will cause an insecure certificate error
custom_profile = create_custom_profile(clone=False)
config = deepcopy(configuration)
config["capabilities"]["moz:firefoxOptions"]["args"] = [
"--profile",
custom_profile.profile,
]
config["capabilities"]["acceptInsecureCerts"] = False
config["capabilities"]["webSocketUrl"] = True
driver = geckodriver(config=config)
driver.new_session()
bidi_session = driver.session.bidi_session
await bidi_session.start()
contexts = await bidi_session.browsing_context.get_tree(max_depth=0)
await navigate_and_assert(
bidi_session,
contexts[0],
url("/common/blank.html", protocol="https"),
expected_error=True,
)
# If the error page hasn't fully loaded yet, running a BiDi command
# in most of the cases will trigger an error like:
# `AbortError: Actor 'MessageHandlerFrame' destroyed before query`
result = await bidi_session.browsing_context.locate_nodes(
context=contexts[0]["context"],
locator={"type": "css", "value": "body"},
)
assert len(result["nodes"]) > 0
async def test_invalid_content_encoding(bidi_session, new_tab, inline):
await navigate_and_assert(
bidi_session,
new_tab,
f"{inline('<div>foo')}&pipe=header(Content-Encoding,gzip)",
expected_error=True,
)
# If the error page hasn't fully loaded yet, running a BiDi command
# in most of the cases will trigger an error like:
# `AbortError: Actor 'MessageHandlerFrame' destroyed before query`
result = await bidi_session.browsing_context.locate_nodes(
context=new_tab["context"],
locator={"type": "css", "value": "body"},
)
assert len(result["nodes"]) > 0