Navigation Commands
Navigate to a specific URL.
| Parameter | Type | Required | Description |
|---|---|---|---|
url |
string | ✅ | The URL to navigate to. Supports ${variable} substitution. |
Example:
url: https://example.com/products?page=1url: https://example.com/search?q=${search_term}go_back
Section titled “go_back”Navigate to the previous page in browser history.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
wait_until |
string | ❌ | commit |
When to consider navigation complete: load, domcontentloaded, networkidle, commit |
go_forward
Section titled “go_forward”Navigate to the next page in browser history.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
wait_until |
string | ❌ | commit |
When to consider navigation complete |
reload
Section titled “reload”Reload the current page.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
wait_until |
string | ❌ | networkidle |
When to consider reload complete |
timeout |
number | ❌ | 30000 | Max wait time in milliseconds |