I\'m building a web application which uses CORS to communicate with it\'s server.
This means that every request is preceded by one with OPTIONS method.
Is it pos
Yes, you can use -method:OPTIONS
in the filter of the Network panel to show all methods apart from ones with type OPTIONS
. If you omit the preceeding -
, it will only show methods of type OPTIONS
.
Before:
After:
You can read more about filtering in the Network panel here.
Firefox Developer Edition Network Panel shows OPTIONS requests without any struggle.