click在指定坐标位置点击Input schema{
"type": "object",
"properties": {
"coordinate": {
"type": "string",
"description": "点击位置的坐标,格式为 'x,y'"
}
},
"required": [
"coordinate"
]
} | — | | — |
close_browser关闭浏览器连接Input schema{
"type": "object",
"properties": {}
} | — | | — |
get_page_content获取当前页面的HTML内容Input schema{
"type": "object",
"properties": {}
} | — | | — |
hover将鼠标悬停在指定坐标位置Input schema{
"type": "object",
"properties": {
"coordinate": {
"type": "string",
"description": "悬停位置的坐标,格式为 'x,y'"
}
},
"required": [
"coordinate"
]
} | — | | — |
launch_browser启动浏览器连接,连接到Chrome调试端口以保持登录状态Input schema{
"type": "object",
"properties": {
"remote_host": {
"type": "string",
"description": "可选的远程Chrome主机URL (例如: http://localhost:9222)"
}
}
} | — | | — |
navigate_to导航到指定URL,智能管理标签页(相同域名复用标签页)Input schema{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "要导航到的URL"
}
},
"required": [
"url"
]
} | — | | — |
resize_browser调整浏览器窗口大小Input schema{
"type": "object",
"properties": {
"size": {
"type": "string",
"description": "窗口大小,格式为 'width,height'"
}
},
"required": [
"size"
]
} | — | | — |
scroll_down向下滚动页面一个视口高度Input schema{
"type": "object",
"properties": {}
} | — | | — |
scroll_up向上滚动页面一个视口高度Input schema{
"type": "object",
"properties": {}
} | — | | — |
type_text输入文本内容Input schema{
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "要输入的文本内容"
}
},
"required": [
"text"
]
} | — | | — |