We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 469908b commit 6cc56c3Copy full SHA for 6cc56c3
test/utils/open-addon.js
@@ -17,6 +17,11 @@ export const openAddon = async (page) => {
17
});
18
await page.click('a[aria-label="Sign in"]'); // click on signin button
19
20
+ // take screenshot
21
+ await page.screenshot({
22
+ path: path.join(screenshotDir, `first-signin-page-${Date.now()}.png`),
23
+ });
24
+
25
await page.waitForSelector('input[name="identifier"]', { visible: true });
26
await page.type('input[name="identifier"]', process.env.EMAIL); // type email
27
await page.click('#identifierNext'); // click "next" button
0 commit comments