browser_launch
Launch and control web browsers programmatically for automated testing, web scraping, or browser-based workflows. Supports headless mode for background operations and session management.
Instructions
启动浏览器
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| headless | No | 是否无头模式(可选,默认 false) | |
| sessionId | No | 会话 ID(可选) |
Input Schema (JSON Schema)
{
"properties": {
"headless": {
"description": "是否无头模式(可选,默认 false)",
"type": "boolean"
},
"sessionId": {
"description": "会话 ID(可选)",
"type": "string"
}
},
"type": "object"
}