> ## 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.

# Wait Node

> Pauses the workflow for a specified number of seconds to allow dynamic content to finish loading.

Overview

The Wait node inserts a "waiting period" into the workflow to ensure pages or dynamic content have finished loading before subsequent operations are executed, preventing clicks or extractions from failing due to slow loading.

<img src="https://mintcdn.com/browseract/eQIQrdFjDcxlv32-/images/Gemini_Generated_Image_lzbih0lzbih0lzbi.png?fit=max&auto=format&n=eQIQrdFjDcxlv32-&q=85&s=c5456159592f7d5072e08c93837220c2" alt="Gemini_Generated_Image_lzbih0lzbih0lzbi.png" width="2752" height="1536" data-path="images/Gemini_Generated_Image_lzbih0lzbih0lzbi.png" />

**Use Cases**

* Waiting for content to load after clicking "Load More" or "View More Comments."
* Waiting for a new page to render after switching pages or submitting forms.
* Pages with heavy JavaScript or significant network latency.

**Core Capabilities**

* Pauses the workflow for a specified number of seconds (e.g., 3s, 5s, 10s).
* Can be used as a pacing tool between any nodes.

**Configuration Steps**

1. Add a **Wait** node.
2. Enter the number of seconds in **Wait Time**, for example:
   * **3 seconds:** Fast-loading pages.
   * **5 seconds:** General dynamic pages.
   * **10 seconds:** Complex or slow pages.
3. At runtime, the workflow pauses at this node for the corresponding duration, then proceeds to the next node.

<img src="https://mintcdn.com/browseract/6AEAYv_wQ0nrrJJQ/images/PixPin_2025-12-04_14-37-25.png?fit=max&auto=format&n=6AEAYv_wQ0nrrJJQ&q=85&s=ba021aa22cf04496f4bb5f1fd9c41814" alt="PixPin_2025-12-04_14-37-25.png" width="614" height="223" data-path="images/PixPin_2025-12-04_14-37-25.png" />

**Recommendations**

* Recommended for use after nodes that trigger page changes, such as [**Click Element**](/learn/basics/node-types/click-element-node), [**Visit Page**](/learn/basics/node-types/visit-node), [**Pagination**](/learn/basics/node-types/pagination-node), or [**Scroll**](/learn/basics/node-types/scroll-page-node).
* Wait times should be "sufficient but not excessive"; optimize through testing.
* For pages that load in stages, use multiple shorter Wait nodes after key actions instead of one long wait.
* **Note:** Wait cannot replace element detection logic; it is merely a time compensation measure.
