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.
- Use Loop Continue at the end of the repeated path when the flow should advance to the next URL without ending the run.
- End terminates the run; do not use End as the boundary for a multi-input loop.
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.
- For multi-URL workflows that need an explicit after-loop step, connect the repeated path to Loop Continue, then connect Loop Continue to the block that should run after the list is complete.
- Use append mode in Structured Export when looping through many URLs into one CSV.
