Fake Store Proxy Smoke Misses User and Cart Contracts
EasyDashboardsAPI
Task
Run GET /_api-sandbox/products/1 -> GET /_api-sandbox/users/1 -> GET /_api-sandbox/carts/1 with immediate assertions
Success
- Use Playwright request fixture/context for every API call
- Keep traffic on /_api-sandbox only
- Run strict order: GET /_api-sandbox/products/1 -> GET /_api-sandbox/users/1 -> GET /_api-sandbox/carts/1
Rules
- No local mocks or off-target HTTP calls
- No reordered flow steps
- No end-only assertions
Mutation
- Order and payload checks are both graded
- Bypassing /_api-sandbox fails grading
Hint 1
• Action: send GET /_api-sandbox/products/1 • Action: send GET /_api-sandbox/users/1 • Action: send GET /_api-sandbox/carts/1
Hint 2
• Assertion: assert 200 (or another 2xx) response • Assertion: assert payload has numeric id
Hint 3
• Assertion: assert payload contains id and username • Assertion: assert payload contains id and non-empty products array
