Fix FxA selectors and add snapshots to gitignore
This commit is contained in:
Родитель
62b511efe0
Коммит
3beed7d62f
|
@ -13,6 +13,7 @@ junit.xml
|
||||||
/test-results/
|
/test-results/
|
||||||
/playwright-report/
|
/playwright-report/
|
||||||
/playwright/.cache/
|
/playwright/.cache/
|
||||||
|
e2e-tests/specs/*-snapshots/**
|
||||||
state.json
|
state.json
|
||||||
har/
|
har/
|
||||||
allure-results/
|
allure-results/
|
||||||
|
|
|
@ -66,7 +66,7 @@ const setYourPassword = async (page: Page) => {
|
||||||
const enterConfirmationCode = async (page: Page) => {
|
const enterConfirmationCode = async (page: Page) => {
|
||||||
const maybeVerificationCodeInput = "div.card input";
|
const maybeVerificationCodeInput = "div.card input";
|
||||||
await page.waitForSelector(maybeVerificationCodeInput, { timeout: 2000 });
|
await page.waitForSelector(maybeVerificationCodeInput, { timeout: 2000 });
|
||||||
const confirmButton = page.locator("#submit-btn");
|
const confirmButton = page.locator('[type="submit"]').first();
|
||||||
const verificationCode = await getVerificationCode(
|
const verificationCode = await getVerificationCode(
|
||||||
process.env.E2E_TEST_ACCOUNT_FREE as string,
|
process.env.E2E_TEST_ACCOUNT_FREE as string,
|
||||||
page,
|
page,
|
||||||
|
@ -90,7 +90,7 @@ const signIn = async (page: Page) => {
|
||||||
const enterYourEmail = async (page: Page) => {
|
const enterYourEmail = async (page: Page) => {
|
||||||
const maybeEmailInput = 'input[name="email"]';
|
const maybeEmailInput = 'input[name="email"]';
|
||||||
await page.waitForSelector(maybeEmailInput, { timeout: 2000 });
|
await page.waitForSelector(maybeEmailInput, { timeout: 2000 });
|
||||||
const signInButton = page.locator("#submit-btn");
|
const signInButton = page.locator('[type="submit"]').first();
|
||||||
await page
|
await page
|
||||||
.locator(maybeEmailInput)
|
.locator(maybeEmailInput)
|
||||||
.fill(process.env.E2E_TEST_ACCOUNT_FREE as string);
|
.fill(process.env.E2E_TEST_ACCOUNT_FREE as string);
|
||||||
|
@ -101,11 +101,12 @@ const enterYourEmail = async (page: Page) => {
|
||||||
|
|
||||||
const enterYourPassword = async (page: Page) => {
|
const enterYourPassword = async (page: Page) => {
|
||||||
await page
|
await page
|
||||||
.locator("#password")
|
.locator('[type="password"]')
|
||||||
|
.nth(0)
|
||||||
.fill(process.env.E2E_TEST_ACCOUNT_PASSWORD as string);
|
.fill(process.env.E2E_TEST_ACCOUNT_PASSWORD as string);
|
||||||
|
|
||||||
// using force here due to fxa issue with playwright
|
// 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 page.waitForTimeout(500);
|
||||||
await checkAuthState(page);
|
await checkAuthState(page);
|
||||||
};
|
};
|
||||||
|
|
|
@ -18,7 +18,7 @@ export class AuthPage {
|
||||||
constructor(page: Page) {
|
constructor(page: Page) {
|
||||||
this.page = page;
|
this.page = page;
|
||||||
this.emailInputField = page.locator('input[name="email"]');
|
this.emailInputField = page.locator('input[name="email"]');
|
||||||
this.passwordInputField = page.locator("#password");
|
this.passwordInputField = page.locator('[type="password"]').nth(0);
|
||||||
this.passwordSignupInputField = page.getByTestId(
|
this.passwordSignupInputField = page.getByTestId(
|
||||||
"new-password-input-field",
|
"new-password-input-field",
|
||||||
);
|
);
|
||||||
|
@ -26,7 +26,7 @@ export class AuthPage {
|
||||||
"verify-password-input-field",
|
"verify-password-input-field",
|
||||||
);
|
);
|
||||||
this.ageInputField = page.getByTestId("age-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", {
|
this.createAccountButton = page.getByRole("button", {
|
||||||
name: "Create account",
|
name: "Create account",
|
||||||
});
|
});
|
||||||
|
|
Загрузка…
Ссылка в новой задаче