From 9b54afa9212ceb5ec67aceb256c9c15973fd1d58 Mon Sep 17 00:00:00 2001 From: Nicole Stock Date: Mon, 19 May 2025 15:27:42 -0400 Subject: [PATCH 1/3] try changing text on github sign in button --- e2e/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/utils.ts b/e2e/utils.ts index 93f9831bd..606ac6b4f 100644 --- a/e2e/utils.ts +++ b/e2e/utils.ts @@ -69,7 +69,7 @@ async function gotoAndLogin(page: Page) { await page.getByPlaceholder("Email address").fill("admin@kitware.com"); await page.getByPlaceholder("Password").click(); await page.getByPlaceholder("Password").fill("password"); - await page.getByRole("button", { name: "Sign In " }).click(); + await page.getByRole("button", { name: "Sign In" }).click(); await page.getByRole("button", { name: TEST_USER_INITIALS }).waitFor({ state: "visible" }); } From a609668f80ad493b8bc986226e16d234f6b92d7b Mon Sep 17 00:00:00 2001 From: Nicole Stock Date: Mon, 19 May 2025 15:29:04 -0400 Subject: [PATCH 2/3] try changing text on github sign in button --- e2e/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/utils.ts b/e2e/utils.ts index 606ac6b4f..8bf90023a 100644 --- a/e2e/utils.ts +++ b/e2e/utils.ts @@ -69,7 +69,7 @@ async function gotoAndLogin(page: Page) { await page.getByPlaceholder("Email address").fill("admin@kitware.com"); await page.getByPlaceholder("Password").click(); await page.getByPlaceholder("Password").fill("password"); - await page.getByRole("button", { name: "Sign In" }).click(); + await page.getByRole("button", { name: "Sign In" }).click(); // GitHub sign in button await page.getByRole("button", { name: TEST_USER_INITIALS }).waitFor({ state: "visible" }); } From a751d917d5fafe103e710ac5f21ed516ff56e6dc Mon Sep 17 00:00:00 2001 From: Nicole Stock Date: Mon, 19 May 2025 15:51:46 -0400 Subject: [PATCH 3/3] Remove char from sign up button name --- e2e/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/utils.ts b/e2e/utils.ts index 8bf90023a..234e44958 100644 --- a/e2e/utils.ts +++ b/e2e/utils.ts @@ -26,7 +26,7 @@ async function registerNewUser(page: Page) { await page.getByPlaceholder("Password").first().fill(password); await page.getByPlaceholder("Password (again)").click(); await page.getByPlaceholder("Password (again)").fill(password); - await page.getByRole("button", { name: "Sign Up " }).click(); + await page.getByRole("button", { name: "Sign Up" }).click(); await page.getByLabel("First Name").click({ force: true }); await page.getByLabel("First Name").fill(firstname); await page.getByLabel("Last Name").click({ force: true });