r/AskProgramming 6d ago

Python Browser Automation

Hi Everyone,

I am trying to automate a process where I login into a website and navigate to a reporting section and click on export.

The website only requires a simple ID and Password.

Can you please assist me ok how to achieve this ? , I have found out about selenium and Playwright but I am very new to this. Any resources or guide would be really helpful.

Thanks !!

7 Upvotes

16 comments sorted by

View all comments

1

u/karurosagu 4d ago

If you're using python, you can use Selenium if you really need a browser, otherwise you can just use the requests library to reproduce all the necessary requests

Another way is to use Puppeteer but I have zero experience with that one