Purpose
Use Wait for Page Load after navigation or refresh when you need a general page readiness step before more specific waits.
How it works
- Waits for the page body to be present.
- Uses the configured timeout when provided.
- Does not guarantee that late JavaScript-rendered data has finished loading.
Configuration fields
| Field | Required | Default | Description |
|---|---|---|---|
| Timeout | No | 30 | Maximum seconds to wait. |
Usage notes
- Follow with Wait for Element on JavaScript-heavy sites.
- Use it as a broad guard, not as the only readiness signal for dynamic pages.