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 d73a523 commit a374d48Copy full SHA for a374d48
epic-games.js
@@ -83,8 +83,9 @@ try {
83
const email = cfg.eg_email || await prompt({message: 'Enter email'});
84
const password = email && (cfg.eg_password || await prompt({type: 'password', message: 'Enter password'}));
85
if (email && password) {
86
- await page.click('text=Sign in with Epic Games');
+ // await page.click('text=Sign in with Epic Games');
87
await page.fill('#email', email);
88
+ await page.click('button[type="submit"]');
89
await page.fill('#password', password);
90
await page.click('button[type="submit"]');
91
page.waitForSelector('#h_captcha_challenge_login_prod iframe').then(async () => {
0 commit comments