> ## Documentation Index
> Fetch the complete documentation index at: https://docs.browseract.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Pagination Node

> Handles navigation for multi-page content by automatically clicking 'Next' or 'Previous' buttons.

Overview

The Pagination node is used to automatically turn pages in multi-page content, such as clicking "Next Page" or "Previous Page" buttons. It works with [extraction](/learn/basics/node-types/extract-data-node) nodes to implement batch collection across multiple pages.

<img src="https://mintcdn.com/browseract/EP_-3g3vkyvOmmAE/images/Gemini_Generated_Image_tj4an5tj4an5tj4a.png?fit=max&auto=format&n=EP_-3g3vkyvOmmAE&q=85&s=4a1c0bc12793ebe4f0c9d45a25562171" alt="Gemini_Generated_Image_tj4an5tj4an5tj4a.png" width="2752" height="1536" data-path="images/Gemini_Generated_Image_tj4an5tj4an5tj4a.png" />

**Use Cases**

* Multi-page search results or product lists on e-commerce sites.
* Multi-page job lists on recruitment sites.
* Paginated archive lists on news sites or forums.

**Core Capabilities**

* Supports **Next Page** or **Previous Page** navigation.
* Can generate multi-page loops when combined with [Extract Data](/learn/basics/node-types/extract-data-node), [Loop List](/learn/basics/node-types/loop-list-node), Loop, and [Scroll](/learn/basics/node-types/scroll-page-node) nodes.
* Option to terminate the task or skip and continue upon pagination failure.

**Configuration Steps**

1. Add a **Pagination** node.
2. Select the direction in **Direction**:
   * **Next Page**
   * **Previous Page**
3. Configure error handling strategy:
   * **Stop Task:** Terminate the workflow if pagination fails (e.g., reached the last page).
   * **Skip and Continue:** Ignore the current pagination error and proceed to subsequent nodes.
4. Usually place Pagination after [**Extract Data**](/learn/basics/node-types/extract-data-node) to ensure current page data is collected before turning the page.

<img src="https://mintcdn.com/browseract/6AEAYv_wQ0nrrJJQ/images/PixPin_2025-12-04_14-26-18.png?fit=max&auto=format&n=6AEAYv_wQ0nrrJJQ&q=85&s=2686775b2485838f041aa7f1733529ac" alt="PixPin_2025-12-04_14-26-18.png" width="617" height="275" data-path="images/PixPin_2025-12-04_14-26-18.png" />

**Recommendations**

* Each Pagination node executes only one page turn action. For batch pagination, combine with **Loop** / **Loop List**.
* If the pagination button is not in the current visible area, use **Scroll Page** or **Scroll to Element** first to scroll to the pagination area.
* For scenarios with an uncertain number of pages, recommend using **Loop** with "Data count/Button status" as the exit condition.
