This commit is contained in:
Jens
2026-07-24 22:46:37 +02:00
parent 0101660bd7
commit bdf44eec04
26 changed files with 1770 additions and 24 deletions
@@ -183,12 +183,12 @@ def test_vr114_browser_flow(viewport, live_server, client, tmp_path, user, profi
page = context.new_page()
try:
# Login.
# Login (e-mailadres + wachtwoord, Stitch-ontwerp).
page.goto(login_url)
_assert_playwright_accessibility(page, expected_h1="Welkom terug")
page.get_by_label("Gebruikersnaam").fill(user.username)
_assert_playwright_accessibility(page, expected_h1="Inloggen")
page.get_by_label("E-mailadres").fill(user.email)
page.get_by_label("Wachtwoord").fill("correct-horse-battery-staple")
page.get_by_role("button", name="Aanmelden").click()
page.get_by_role("button", name="Inloggen").click()
page.wait_for_url(dashboard_url)
_assert_playwright_accessibility(page, expected_h1="Goedemorgen")