browserNavigate
Directs a web page to a specified URL using a page ID, with optional wait time for snapshot capture, enabling precise browser navigation within automation workflows.
Instructions
导航到指定URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageId | Yes | 页面ID | |
url | Yes | 要导航的URL | |
waitForTimeout | No | 操作后等待获取快照的延迟时间(毫秒,默认2000) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pageId": {
"description": "页面ID",
"type": "string"
},
"url": {
"description": "要导航的URL",
"type": "string"
},
"waitForTimeout": {
"description": "操作后等待获取快照的延迟时间(毫秒,默认2000)",
"type": "number"
}
},
"required": [
"pageId",
"url"
],
"type": "object"
}