0

The developer console in Chrome has a network tab that shows all of the resource requests and timing information. In my application I would like to capture that information and send it to the server for analysis if an issue is detected without the need for user intervention. Ideally I'd even like to export it as a HAR file.

A browser extension won't work for my use case. I'm also aware of the PerformanceAPI, but that only provides timing information. It does not include any request or response information.

So is there a way to capture all of the information from the network tab programmatically?

hooda
  • 105
  • 6
  • check out this https://stackoverflow.com/questions/52969381/how-can-i-capture-all-network-requests-and-full-response-data-when-loading-a-pag for chrome – pathe.kiran Jun 10 '20 at 13:15
  • That question is asking how to do it using Puppeteer. That does not fit my use case since I need this to work from the running application code. – hooda Jun 10 '20 at 15:10

0 Answers0