15 lines
405 B
Python
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()
|