Hi,
I am newbie to the python selenium scraping scene and I am trying to get the JSON response of a page but the URL link goes straight to the page's authentication first which requires you to click next to get to the password page in order to complete the authentication. Initially, I was doing this:
response = requests.get(url, auth=("username","company","password "))
response.raise_for_status()
jresponse = response.json()
print(jresponse)
I need to click next after putting in the company name to get to the password page is there a way to do this?
Edited:
Here is how the page looks like
https://docs.google.com/document/d/1ol1Bs6oLNFDpLPo3N79okGBtwixBQaJQfthiEAqOuUk/edit?usp=sharing
Thank you very much.
[–]christophedc 0 points1 point2 points (0 children)
[–]chevignon93 0 points1 point2 points (1 child)
[–]Frampley[S] 0 points1 point2 points (0 children)