I'm trying to use python requests to automatically capture csv data output from a site.
There is a button for download on the target page. It will pop up a message window for confirmation. Once I click ok, it will opens a new tab, download the csv, then the new tab automatically close.
The network tab in chrome dev is not able to capture any activity. I can't open the network tab on the new tab since it closes so quickly.
I found a discussion HERE with similar issue, but it doesn't quite work on mine. 1) I don't know how to read the event log in chrome://net-internals/#events, but seems it doesn't have any POST info. 2) Since it gives me a pop up first, I can't make it open in the same tab.
How do I get the POST info? Thanks in advance.