We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8be27c8 commit 526a997Copy full SHA for 526a997
.github/workflows/puppeteer-script.js
@@ -4,7 +4,6 @@ module.exports = async (browser, context) => {
4
await page.goto('https://' + process.env.subdomain + '.zendesk.com/auth/v2/login');
5
await page.type('#user_email', process.env.end_user_email);
6
await page.type('#user_password', process.env.end_user_password);
7
- const navigationPromise = page.waitForNavigation();
8
await page.click('[name="commit"]');
9
- await navigationPromise;
+ await setTimeout(() => (console.log("logging in")), 100);
10
};
0 commit comments