I'm trying to get this data from the website, in python: Data seen from the web browser
What's the best way to get that json from the website?
What I've tried so far:
It saves everything and I only want that json object. I've been trying to keep it as "last resort" since it's a manual operation.
I used selenium for a couple of automations so it was my first go to. The web page has login with 2 factor authentication, so I had to use a profile already logged in. Tried to just get the response in python but it was blocked.
Then I tried to get the response with seleniumrequests, which didn't work as well.
Lastly I tried loading cookies from the logged instance of selenium to the request, didn't work.
I'm kinda lost, any help would be greatly appreciated!
As these are XHR requests you could grab this information using Selenium Wire. It works the same way standard Selenium does, but with the added functionality of capturing requests and handling them.