diff --git a/recipes/authentik/tests_authentik/setup_authentik.py b/recipes/authentik/tests_authentik/setup_authentik.py index 60dd5ef..9aa6e3b 100644 --- a/recipes/authentik/tests_authentik/setup_authentik.py +++ b/recipes/authentik/tests_authentik/setup_authentik.py @@ -26,8 +26,8 @@ def setup_admin_state(context: BrowserContext, env_config: dict[str, str], DIR: expect(page.get_by_text(welcome_message)).to_be_visible() # login - page.locator('input[name="uidField"]').fill(ADMIN_USER) - page.locator('ak-stage-identification input[name="password"]').fill(ADMIN_PASS) + page.locator("input[name='uidField']").fill(ADMIN_USER) + page.locator("ak-stage-identification input[name='password']").fill(ADMIN_PASS) page.get_by_role("button", name="Log In").click() expect(page.locator("ak-library")).to_be_visible()