Files
site/WESP_REL/tests/e2e/test_components_page.py
T
2026-07-17 12:57:18 +03:00

15 lines
405 B
Python

"""E2E smoke: /components."""
from __future__ import annotations
import pytest
pytestmark = pytest.mark.e2e
def test_components_page_loads(zootech_authenticated_page, live_server_url) -> None:
page = zootech_authenticated_page
page.goto(f"{live_server_url}/components")
page.wait_for_load_state("domcontentloaded")
assert "components" in page.url or page.locator("body").is_visible()