Receive HTTP request from IE

Is there a way to access IE's HTTP request when the page is already loaded. For example, I have an application that opens a browser window. I want to clear the page, but would like to receive the entire HTTP request for this page (and not just for the URL).

I downloaded the developer tools, but I see nothing there for the request.

Thanks.

+3
source share
2 answers

There is a great utility called " Fiddler " that you can use.

This is a proxy server for web debugging, so it will act as an intermediary for all your web requests.

.

+5
+3

Source: https://habr.com/ru/post/1712229/


All Articles