Skip to content

Commit f437146

Browse files
authored
Change input query to "Passwd" (#149)
1 parent a323926 commit f437146

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/utils/open-addon.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ const openAddon = async (page) => {
77
await page.type('input[name="identifier"]', process.env.EMAIL); // type email
88
await page.click('#identifierNext'); // click "next" button
99

10-
await page.waitForSelector('input[name="password"]', { visible: true });
11-
await page.type('input[name="password"]', process.env.PASSWORD); // type pass
10+
await page.waitForSelector('input[name="Passwd"]', { visible: true });
11+
await page.type('input[name="Passwd"]', process.env.PASSWORD); // type pass
1212
await page.waitForTimeout(500);
1313

1414
await page.click('#passwordNext'); // click "next" button

0 commit comments

Comments
 (0)