page.goto

View as Markdown

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

ArgumentTypeRequiredDescription
urlstringYesDestination URL.
optionsobjectNoDriver navigation options.

Result

  • Type: response | null
  • Description: Driver navigation result when available.

SDK Example

1await runtime.page.goto('https://example.com');

HTTP Example

1{
2 "runtime": "crm",
3 "steps": [
4 {
5 "call": "page.goto",
6 "args": [
7 "https://example.com"
8 ]
9 }
10 ]
11}