Skip to content

Commit

Permalink
pg: login now has Continue button after email
Browse files Browse the repository at this point in the history
  • Loading branch information
vogler committed Aug 28, 2024
1 parent c87deb3 commit eafb231
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions prime-gaming.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ try {
const password = email && (cfg.pg_password || await prompt({ type: 'password', message: 'Enter password' }));
if (email && password) {
await page.fill('[name=email]', email);
await page.click('input[type="submit"]');
await page.fill('[name=password]', password);
await page.check('[name=rememberMe]');
await page.click('input[type="submit"]');
Expand Down

0 comments on commit eafb231

Please sign in to comment.