user1441998
user1441998

Reputation: 459

How do I find the request that is downloading a file?

i'm trying to use chrome dev tools network view to find the GET/POST/xhr/fetch/etc that downloads a csv file.

i want to download the data in this table: https://public.tableau.com/profile/oregon.health.authority.covid.19#!/vizhome/OregonCOVID-19CasesbyZIPCode-SummaryTable/CasesbyZIPCodeSummaryTable?publish=yes

click the download icon at the bottom of the table, select "crosstab", select "csv". then clear the console and network log. then hit "download." this downloads a 20kB csv file, but i can't find the associated request.

i've tried clearing the application storage. how can i find the proper request to download the file myself?

Upvotes: 0

Views: 2083

Answers (1)

levangode
levangode

Reputation: 426

you probably can't see it because it opens in a new tab and closes instantly. Get the download link, open a dev console in an empty tab, paste the download link and you will see the network for the file requested. (For getting the download link you can just go to downloads in Chrome)

Upvotes: 1

Related Questions