cal.pub0.org/apps/web/playwright/auth/forgot-password.test.ts

55 lines
1.6 KiB
TypeScript

import { expect, test } from "@playwright/test";
test("Can reset forgotten password", async ({ browser }) => {
// Create a new incognito browser context
const context = await browser.newContext({
extraHTTPHeaders: {
// Only needed for bypassing emails while testing
"X-Playwright-Secret": process.env.PLAYWRIGHT_SECRET || "",
},
});
// Create a new page inside context.
const page = await context.newPage();
// Got to reset password flow
await page.goto("/auth/forgot-password");
// Fill [placeholder="john.doe@example.com"]
await page.fill('input[name="email"]', "pro@example.com");
// Press Enter
await Promise.all([
page.waitForNavigation({
url: "/auth/forgot-password/*",
}),
page.press('input[type="email"]', "Enter"),
]);
// Wait for page to fully load
await page.waitForSelector("text=Reset Password");
// Fill input[name="password"]
await page.fill('input[name="password"]', "pro");
// Click text=Submit
await page.click('button[type="submit"]');
await page.waitForSelector("text=Success", {
timeout: 3000,
});
await expect(page.locator(`text=Success`)).toBeVisible();
// Click button:has-text("Login")
await Promise.all([page.waitForNavigation({ url: "/auth/login" }), page.click('button:has-text("Login")')]);
// Fill input[name="email"]
await page.fill('input[name="email"]', "pro@example.com");
await page.fill('input[name="password"]', "pro");
await page.press('input[name="password"]', "Enter");
await page.waitForSelector("[data-testid=dashboard-shell]");
await expect(page.locator("[data-testid=dashboard-shell]")).toBeVisible();
await context.close();
});