navigate_to
Directs the browser to a specified URL, reusing tabs for the same domain to optimize tab management during automated browser sessions.
Instructions
导航到指定URL,智能管理标签页(相同域名复用标签页)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | 要导航到的URL |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "要导航到的URL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}