Problem
When quickly testing the same endpoint with different HTTP methods (common when working on CRUD APIs), switching the method via mouse/menu breaks the keyboard-driven flow. There's currently no fast way to change the request method without leaving the keyboard.
Proposed solution
Add a keyboard shortcut that cycles the HTTP method of the current request, instead of having to pick it manually every time.
Cycling should work from whatever method the request currently has, not just starting from GET:
- GET → POST
- POST → PUT
- PUT → GET
Details:
- A single keypress (e.g.
M on the method field) rather than a combo.
- Available on both
intercept and replay.
- Possibly configurable: which methods are included in the cycle (at minimum GET/POST/PUT, ideally extendable to DELETE/PATCH too).
Alternatives considered
No response
Additional context
No response
Problem
When quickly testing the same endpoint with different HTTP methods (common when working on CRUD APIs), switching the method via mouse/menu breaks the keyboard-driven flow. There's currently no fast way to change the request method without leaving the keyboard.
Proposed solution
Add a keyboard shortcut that cycles the HTTP method of the current request, instead of having to pick it manually every time.
Cycling should work from whatever method the request currently has, not just starting from GET:
Details:
Mon the method field) rather than a combo.interceptandreplay.Alternatives considered
No response
Additional context
No response