We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e357d6 commit 9d145afCopy full SHA for 9d145af
samples/e2eTestUtils/src/TestUtils.ts
@@ -217,6 +217,7 @@ export const SUCCESSFUL_GET_ALL_ACCOUNTS_ID = "accounts-retrieved-successfully";
217
218
export async function fillPassword(page: Page, screenshot: Screenshot, password: string): Promise<void> {
219
try {
220
+ await page.locator('span ::-p-text(Use your password)').setTimeout(1000).click().catch(() => {});
221
await screenshot.takeScreenshot(page, "passwordPage");
222
await page.locator(`${Object.values(PasswordInputSelectors).join(", ")}`).setTimeout(2000).fill(password);
223
await screenshot.takeScreenshot(page, "loginPagePasswordFilled");
0 commit comments