Skip to main content
This function has multiple overloads
Navigates to a specified URL with enhanced reliability features including automatic retries with exponential backoff, intelligent timeout handling, and optional AI-powered loading verification.This function handles common navigation challenges by automatically retrying failed requests, detecting navigation hangs, and ensuring the page reaches a truly idle state.
Use this overload for standard navigation without AI-powered loading detection.

Examples

Arguments

Page
required
The Playwright Page object to navigate.
str
required
The URL to navigate to.
int
Maximum navigation time in seconds. Defaults to 30.
int
Number of retry attempts with exponential backoff (factor: 2). Defaults to 3.
Literal['load', 'domcontentloaded', 'networkidle', 'commit']
When to consider navigation succeeded. Defaults to “load”.
bool
Whether to raise an error on navigation timeout. When False, the function returns without throwing, allowing continued execution. Defaults to False.
bool
Set to False to disable AI-powered loading checks. Defaults to False.

Returns: None

Function completes when navigation is finished or fails after retries.