Back to Playground
Network & APIs

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.

Total requests made: 0
GET

Fetch Users

Fires a GET request to /api/playground?action=users. Capture this with Start Network Capture using pattern */api/playground*.

POST

Create User

Fires a POST request with a JSON body. Extract the returned id using JSONPath.

GET

Slow Endpoint (2s delay)

Simulates a slow API response. Great for testing Wait for Network Idle and loading states.

GET

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

1

Add a Start Network Capture step with pattern */api/playground*

2

Add a Click step targeting one of the fetch buttons above

3

Add Wait for Capture referencing the same capture name

4

Assert captureName_httpCode equals 200