browser_navigate
Navigate to specified web pages using browser automation to access online content and perform web-based tasks within Windows systems.
Instructions
导航到网页
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | 网页 URL | |
| sessionId | No | 会话 ID(可选) |
Input Schema (JSON Schema)
{
"properties": {
"sessionId": {
"description": "会话 ID(可选)",
"type": "string"
},
"url": {
"description": "网页 URL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}