*** title: page.reload description: Reload the active page. ------------------------------------ `page.reload` 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.reload` * Async: Yes ## HTTP Surface * Transport: `workspace.execute(...)` * Call: `page.reload` * Long-running: No ## Reference Semantics * Requires refs: `page` ## Arguments | Argument | Type | Required | Description | | --------- | -------- | -------- | ---------------------- | | `options` | `object` | No | Driver reload options. | ## Result * Type: `response | null` * Description: Driver reload result when available. ## SDK Example ```ts await runtime.page.reload(); ``` ## HTTP Example ```json { "runtime": "crm", "steps": [ { "call": "page.reload" } ] } ``` ## Related Capabilities * [`page.goto`](../navigation/page-goto) * [`page.waitForLoadState`](../navigation/page-wait-for-load-state)