From 70fa8d485c38e365e7149468c09d421b8afa274f Mon Sep 17 00:00:00 2001 From: Krzysztof Czerwinski Date: Tue, 24 Dec 2024 16:06:05 +0100 Subject: [PATCH] Fix login button in test --- autogpt_platform/frontend/src/tests/pages/login.page.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt_platform/frontend/src/tests/pages/login.page.ts b/autogpt_platform/frontend/src/tests/pages/login.page.ts index 4001ab565057..bd8913571641 100644 --- a/autogpt_platform/frontend/src/tests/pages/login.page.ts +++ b/autogpt_platform/frontend/src/tests/pages/login.page.ts @@ -28,7 +28,7 @@ export class LoginPage { // Wait for the button to be ready const loginButton = this.page.getByRole("button", { - name: "Log in", + name: "Login", exact: true, }); await loginButton.waitFor({ state: "visible" });