Closed devKshitijJain closed 4 years ago
yeap I have the same issue
Okay I was able to fix this locally, but I'm to lazy to create a PR. Maybe the author will to that.
So to fix this go to src/login.ts and replace this two lines await page.type('#loginform-email', EMAIL); await page.type('#loginform-password', PASSWORD);
with this two lines await page.type('[name=email]', EMAIL); await page.type('[name=password]', PASSWORD);
@kodlan I really wonder why using ID is not working but using name is working!
well, there is no id there, I guess they removed it just recently
@kodlan, Ah I see. Thanks 👍