14 lines
339 B
Python
14 lines
339 B
Python
"""E2E smoke: /unloading (localhost kiosk bypass)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
pytestmark = pytest.mark.e2e
|
|
|
|
|
|
def test_unloading_page_loads(page, live_server_url) -> None:
|
|
page.goto(f"{live_server_url}/unloading")
|
|
page.wait_for_load_state("domcontentloaded")
|
|
assert page.locator("body").is_visible()
|