Google Developer Tools "Network" Tab clears after redirect

Google ChromeFirebugDeveloper Tools

Google Chrome Problem Overview


Google Developer Tools "Network" Tab clears after redirect to another page and i want to know if there is any way to keep all request?

I want to do this because i want to verify one POST request but it redirects and get cleared.

In firebug we can use the "Persist" option:

(The "Persist" option prevents clearing the console at a page reload. That means, the messages will stay inside the console as long as this option is enabled.) https://getfirebug.com/wiki/index.php/Console_Panel

Google Chrome Solutions


Solution 1 - Google Chrome

In the network tab of dev tools, on the top left of the dev tools there should be a checkbox labelled Preserve log. Click that and it will preserve network upon navigation.

Chrome screenshot

(older versions may have the record button in the buttom left, as seen here)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRodrigo GraçaView Question on Stackoverflow
Solution 1 - Google ChromeSnuffleupagusView Answer on Stackoverflow