tony
tony

Reputation: 1326

Preserve Network Log on Edge

I am debugging an application on Microsoft Edge and I was wondering if there is a way to preserve the Network Log?

A request is made I need to inspect just before the page redirects with another request.

Upvotes: 0

Views: 6170

Answers (1)

Deepak-MSFT
Deepak-MSFT

Reputation: 11355

Not sure, whether you are using MS Edge (EdgeHtml) browser or MS Edge (Chromium) browser. Here, I am showing you the suggestion for both browsers.

If you are using MS Edge (EdgeHtml) browser. you can refer steps below.

If you want that old request data should be preserved while the new page gets load then you can disable Clear entries on navigate option on Network tab of developer tools.

enter image description here

If you want to preserve the Network log in a file then you can export it as HAR file (CTRL + S).

enter image description here

If you are using MS Edge (Chromium) browser. you can refer steps below.

If you want that old request data should be preserved while the new page gets load then you can enable Preserve log option on Network tab of developer tools.

enter image description here

If you want to preserve the Network log in a file then you can export it as HAR file.

enter image description here

Upvotes: 6

Related Questions