*** title: page.goto description: Navigate the active page to a URL. ----------------------------------------------- `page.goto` is a browser runtime capability in the `page` namespace. ## Availability * Runtime: `browser` * Kind: `raw` * Category: `navigation` * Supported drivers: Playwright, Puppeteer, Stagehand ## SDK Surface * SDK path: `runtime.page.goto` * Async: Yes ## HTTP Surface * Transport: `workspace.execute(...)` * Call: `page.goto` * Long-running: No ## Reference Semantics * Requires refs: `page` ## Arguments | Argument | Type | Required | Description | | --------- | -------- | -------- | -------------------------- | | `url` | `string` | Yes | Destination URL. | | `options` | `object` | No | Driver navigation options. | ## Result * Type: `response | null` * Description: Driver navigation result when available. ## SDK Example ```ts await runtime.page.goto('https://example.com'); ``` ## HTTP Example ```json { "runtime": "crm", "steps": [ { "call": "page.goto", "args": [ "https://example.com" ] } ] } ``` ## Related Capabilities * [`page.reload`](../navigation/page-reload) * [`page.waitForLoadState`](../navigation/page-wait-for-load-state)