Skip to content

Commit 526a997

Browse files
author
Sergio Azevedo
committed
fix: attempt to fix lighthouse check
1 parent 8be27c8 commit 526a997

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/puppeteer-script.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ module.exports = async (browser, context) => {
44
await page.goto('https://' + process.env.subdomain + '.zendesk.com/auth/v2/login');
55
await page.type('#user_email', process.env.end_user_email);
66
await page.type('#user_password', process.env.end_user_password);
7-
const navigationPromise = page.waitForNavigation();
87
await page.click('[name="commit"]');
9-
await navigationPromise;
8+
await setTimeout(() => (console.log("logging in")), 100);
109
};

0 commit comments

Comments
 (0)