Reputation:
How can I filter by request method (e.g. POST) in the network tab?
Putting "post" into the filter field does not help, because it filters only by files. Is there a speacial filter method for HTTP-Requests? E.g.: "Show me only POST requests?
Upvotes: 4
Views: 2578
Reputation: 679
The filter text field also supports various keywords that let you sort resources by various properties, such as file size using the larger-than keyword.
"method:POST|GET|PUT" - Show resources that were retrieved over a specified HTTP method type. DevTools populates the dropdown with all of the HTTP methods it has encountered.
Upvotes: 11