1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-21 03:43:58 +00:00

Fix hardcoded password in fixture

This commit is contained in:
Matt Gibson
2026-01-27 10:32:17 -08:00
parent e83e48a268
commit 625be790ef

View File

@@ -177,7 +177,7 @@ export class AuthFixture {
await page.getByRole("textbox", { name: "Email address (required)" }).press("Enter");
await page
.getByRole("textbox", { name: "Master password (required)" })
.fill(scene.mangle("asdfasdfasdf"));
.fill(scene.mangle(password));
await page.getByRole("button", { name: "Log in with master password" }).click();
await page.getByRole("button", { name: "Add it later" }).click();
await page.getByRole("link", { name: "Skip to web app" }).click();