I want to use Python to get all visa processing times from this website. After some investigation, I found out that after clicking Submit in the Processing times guide, a javascript is run, in which it seems that all the data I need are in https://immi.homeaffairs.gov.au/_layouts/15/api/GPT.aspx/GetVisaGlobalProcessingTime.
However, I do not understand the javascript very well so I do not know how to obtain the data from the above link.
I have tried
requests.get("https://immi.homeaffairs.gov.au/_layouts/15/api/GPT.aspx/GetVisaGlobalProcessingTime")and
requests.post("https://immi.homeaffairs.gov.au/_layouts/15/api/GPT.aspx/GetVisaGlobalProcessingTime"),but both failed with errors. I hope someone can have a look and help me out, thanks in advance!