Network request playground
Buttons that fire real HTTP requests to test endpoints. Use Start Network Capture before clicking, then Wait for Capture to inspect responses.
Fetch Users
Fires a GET request to /api/playground?action=users. Capture this with Start Network Capture using pattern */api/playground*.
Create User
Fires a POST request with a JSON body. Extract the returned id using JSONPath.
Slow Endpoint (2s delay)
Simulates a slow API response. Great for testing Wait for Network Idle and loading states.
Error Endpoint (500)
Returns a 500 error. Test error handling, or mock this with Route Network Request to return a success instead.
How to test network captures
Add a Start Network Capture step with pattern */api/playground*
Add a Click step targeting one of the fetch buttons above
Add Wait for Capture referencing the same capture name
Assert captureName_httpCode equals 200