From eafb2316f71d0cc548c4263be74c1818114ffc5b Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Wed, 28 Aug 2024 02:31:47 +0200 Subject: [PATCH] pg: login now has Continue button after email --- prime-gaming.js | 1 + 1 file changed, 1 insertion(+) diff --git a/prime-gaming.js b/prime-gaming.js index 88ae542..7d0d0d2 100644 --- a/prime-gaming.js +++ b/prime-gaming.js @@ -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"]');