shihabmridha / educative.io-downloader

Free Palestine. 📖 This tool is to download course from educative.io for offline usage. It uses your login credentials and download the course.
218 stars 130 forks source link

Login Functionality Broken #29

Closed devKshitijJain closed 4 years ago

devKshitijJain commented 4 years ago
Screenshot 2020-05-05 at 3 33 59 PM
kodlan commented 4 years ago

yeap I have the same issue

kodlan commented 4 years ago

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);

shihabmridha commented 4 years ago

@kodlan I really wonder why using ID is not working but using name is working!

kodlan commented 4 years ago

well, there is no id there, I guess they removed it just recently

shihabmridha commented 4 years ago

@kodlan, Ah I see. Thanks 👍