Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Learn more button test on pots tab #538

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions playwright-tests/tests/pots.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,14 @@ test.describe("Admin is logged in", () => {
});
});

test("clicking learn more button should...", async ({ page }) => {
// TODO:
test("clicking learn more button should redirect to wtfisqr.com", async ({ page }) => {
const newTabPromise = page.waitForEvent("popup");
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this "popup" event happen?

It looks like tests are failing "waiting for event "popup""


await page.getByText("Learn More").click();
const newTab = await newTabPromise;
await newTab.waitForLoadState();

await expect(newTab).toHaveURL("https://www.wtfisqf.com/");
});

test("should show active pots", async ({ page }) => {
Expand Down
Loading