diff --git a/playwright-tests/pages/BasePage.ts b/playwright-tests/pages/BasePage.ts index 6e0d2ece..1c8ba1da 100644 --- a/playwright-tests/pages/BasePage.ts +++ b/playwright-tests/pages/BasePage.ts @@ -18,7 +18,7 @@ export class BasePage { constructor(page: Page) { this.page = page; this.continueButton = page.locator('button[data-test-id="site-footer-main-button"]') - .and(page.locator('button', { hasText: /get\s*started|continue/i })); + .and(page.locator('button', { hasText: /get\s*started|continue|submit/i })); this.pageSpinner = page.getByRole('status'); this.buttonLoadSpin = page.getByRole('alert'); }