Purpose
Use Navigate as the first block in most scrapers. It tells the browser which page to load before interaction, waiting, extraction, or export blocks run.
How it works
- Loads the configured URL in the active browser session.
- When multiple URLs are provided, UScraper runs the downstream graph once per URL.
- If an End block is reached during a multi-URL run, execution returns to Navigate for the next URL until the list is complete.
Configuration fields
| Field | Required | Default | Description |
|---|---|---|---|
| URL | Yes | - | The page to open when you are scraping a single target. |
| Multiple URLs | No | - | One URL per line. Use this when every page should follow the same block sequence. |
Usage notes
- Start with one URL while testing selectors, then switch to a URL list.
- Include the full protocol, for example https://example.com/products.
- Use append mode in Structured Export when looping through many URLs into one CSV.