Action: Navigate
Opens a web page using a target URL
📖 Description
The Navigate
action opens a web page using the URL specified in the url
field,
or the default URL from the context. If the page takes too long to load, a timeout is triggered.
🧩 Structure
Field | Type | Required | Description | Default value |
---|---|---|---|---|
url |
string | The address to navigate to. If omitted, the context's URL will be used. | "https://example.com" | |
timeout |
int | The maximum page load timeout in milliseconds. Default: 30000. | 30000 |
📋 Example
{ "name": "Open Website", "action": "Navigate", "url": "https://example.com", "timeout": 30000 }
📄 Site updated: 17.06.2025 00:01