diff --git a/e2e/cucumber/step-definitions/common-steps.ts b/e2e/cucumber/step-definitions/common-steps.ts index 1478ef6..ddc0911 100644 --- a/e2e/cucumber/step-definitions/common-steps.ts +++ b/e2e/cucumber/step-definitions/common-steps.ts @@ -29,6 +29,12 @@ Given('I am on the login page', async function () { await world.page.waitForLoadState('domcontentloaded'); }); +Given('I am on the password reset page', async function () { + console.log('🌍 Navigating to password reset page'); + await world.page.goto(`${world.baseURL}/auth/password-reset`); + await world.page.waitForLoadState('domcontentloaded'); +}); + Given('I am on the {string} page', async function (pageName: string) { const pageUrls: Record = { 'home': '/',