Use Case Guide

Test API Pagination

Test 'Load More' buttons and infinite scroll without manually scrolling for hours. Manipulate request params to see any page instantly.

The Problem

Checking how your UI handles edge cases like 'page not found' or 'last page' often requires populating your DB with hundreds of test records.

The DevConsole Solution

DevConsole lets you intercept the outgoing pagination requests and change params like 'page=1' to 'page=999' on the fly.

Step-by-Step Implementation

Capture the Request

Locate the data-fetching call for your list or grid in the Network tab.

Modify Params

Change the limit, offset, or page number in the query string or body.

See the UI React

Observe how your component handles an empty array or a massive dataset from the server.

Related Questions

Can I simulate a slow response?

Yes! Use the network throttler to see how your loading skeletons look between pages.

Does it work with Cursor-based pagination?

Yes, you can edit the cursor token in the request just like any other param.

Start Debugging Smarter

DevConsole is free during development. Join 5,000+ developers shipping better code.

Get Started Now