Chrome - Replaying Network Request

From debugging point of view, some time, you will want do stress test your web application by replaying network request. Chrome Developer Tools allows you to do so.

The steps are:

1) Open Chrome Developer Tools, then navigate to Network Tab

2) Then perform the UI action which you want to replay the network request.

3) Look at the Network tab and it will capture the network request

4) Then, right click on the request, select Copy → Copy as fetch





5) Paste the copied fetch request to Console tab and press Enter. It will replay the request


6) You could write fancy javascript at the Console, for example, loop the fetch request



Comments

Popular Posts