chrome_navigate
Navigate a Chrome tab to a URL, targeting a specific tab by ID or matching title/URL, with optional init script and load waiting.
Instructions
Navigate a Chrome tab to a URL. With no target, navigation goes to this session's dedicated automation tab — it never replaces the user's active tab.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| targetId | No | Chrome tab id to target. | |
| timeoutMs | No | Navigation timeout in ms (default 15000). | |
| background | No | If true, avoid explicit Chrome focus/tab activation (default). Pass false to allow foreground work. | |
| initScript | No | Optional JavaScript source to run at document_start of the next navigation. | |
| urlIncludes | No | Match the target tab by URL substring. | |
| titleIncludes | No | Match the target tab by title substring. | |
| waitUntilLoad | No | Wait for load completion (default true). |