0

I'm trying to use the chrome-remote-interface package to register URL's requested by a page, through the Chrome DevTools Protocol.

It works fine until the page loads. After the page loads, I can't get the requests. For example: Ajax, Google Analytics Requests, ...

Is it possible to have the requested URLs after page load with Chrome DevTools Protocol?

  • https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent – Juraj Jan 18 '22 at 15:38

1 Answers1

0

Some of the requests are not done with classic HTTP requests (which are the ones handled by the Network domain. However, youtube's Ajax "navigation" for example, could be tracked by the Page.frameRequestedNavigation event, so it might also work for Google Analytics.

Kle0s
  • 113
  • 1
  • 8