I'm trying to scrape some information from a javascript heavy web site. Usually I can piece some way to read a page from the xhr header information using chrome's inspector or firebug, but nothing I've tried so far works.
I could use selenium or the like, but I'd rather use requests, if possible.
Here's a sample url: https://www.fedex.com/apps/fedextrack/?action=track&cntry_code=in&tracknumbers=770562143139 I'm trying to get the delivery status and related info.
I'm hoping some combination of gets or posts with appropriate parameters will work. I realize there are many similar questions here, such as Scrape ajax web page with python and/or scrapy or How to call ajax in a webpage from python script without browser emulation or headless brawser?