From 7428e1e5a05a6acbd54f7a723ebdfcf08c580c1b Mon Sep 17 00:00:00 2001 From: Antonio Regadas Date: Thu, 22 Aug 2024 12:14:34 +0100 Subject: [PATCH] chore: update test while at it --- test/e2e/playwright/mmi/pageObjects/mmi-auth0-page.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/playwright/mmi/pageObjects/mmi-auth0-page.ts b/test/e2e/playwright/mmi/pageObjects/mmi-auth0-page.ts index 761fb8684de7..c8c304412936 100644 --- a/test/e2e/playwright/mmi/pageObjects/mmi-auth0-page.ts +++ b/test/e2e/playwright/mmi/pageObjects/mmi-auth0-page.ts @@ -45,6 +45,7 @@ export class Auth0Page { .locator('#password') .fill(process.env.MMI_E2E_E2E_AUTH0_PASSWORD as string); await this.page.getByRole('button', { name: /continue/iu }).click(); + await this.page.getByRole('button', { name: /E2E Organization/iu }).click(); await expect(this.page).toHaveURL(portfolio); } }