Fix FxA selectors and add snapshots to gitignore

This commit is contained in:
Rafee 2024-06-20 10:52:15 -04:00
Родитель 62b511efe0
Коммит 3beed7d62f
3 изменённых файлов: 8 добавлений и 6 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -13,6 +13,7 @@ junit.xml
/test-results/
/playwright-report/
/playwright/.cache/
e2e-tests/specs/*-snapshots/**
state.json
har/
allure-results/

Просмотреть файл

@ -66,7 +66,7 @@ const setYourPassword = async (page: Page) => {
const enterConfirmationCode = async (page: Page) => {
const maybeVerificationCodeInput = "div.card input";
await page.waitForSelector(maybeVerificationCodeInput, { timeout: 2000 });
const confirmButton = page.locator("#submit-btn");
const confirmButton = page.locator('[type="submit"]').first();
const verificationCode = await getVerificationCode(
process.env.E2E_TEST_ACCOUNT_FREE as string,
page,
@ -90,7 +90,7 @@ const signIn = async (page: Page) => {
const enterYourEmail = async (page: Page) => {
const maybeEmailInput = 'input[name="email"]';
await page.waitForSelector(maybeEmailInput, { timeout: 2000 });
const signInButton = page.locator("#submit-btn");
const signInButton = page.locator('[type="submit"]').first();
await page
.locator(maybeEmailInput)
.fill(process.env.E2E_TEST_ACCOUNT_FREE as string);
@ -101,11 +101,12 @@ const enterYourEmail = async (page: Page) => {
const enterYourPassword = async (page: Page) => {
await page
.locator("#password")
.locator('[type="password"]')
.nth(0)
.fill(process.env.E2E_TEST_ACCOUNT_PASSWORD as string);
// using force here due to fxa issue with playwright
await page.locator("#submit-btn").click();
await page.locator('[type="submit"]').first().click();
await page.waitForTimeout(500);
await checkAuthState(page);
};

Просмотреть файл

@ -18,7 +18,7 @@ export class AuthPage {
constructor(page: Page) {
this.page = page;
this.emailInputField = page.locator('input[name="email"]');
this.passwordInputField = page.locator("#password");
this.passwordInputField = page.locator('[type="password"]').nth(0);
this.passwordSignupInputField = page.getByTestId(
"new-password-input-field",
);
@ -26,7 +26,7 @@ export class AuthPage {
"verify-password-input-field",
);
this.ageInputField = page.getByTestId("age-input-field");
this.continueButton = page.locator("#submit-btn");
this.continueButton = page.locator('[type="submit"]').first();
this.createAccountButton = page.getByRole("button", {
name: "Create account",
});