| name | browserwing |
| description | Browser automation platform controlling Chrome for navigation, clicking, input, screenshots, data extraction and AI exploration. Use when user mentions browser automation, web scraping, screenshot capture, page navigation, Chrome control, 浏览器自动化, 网页操作, 截图, 数据提取, AI探索. |
BrowserWing 浏览器自动化
BrowserWing 是本地浏览器自动化平台,已配置 DeepSeek LLM,运行于 http://localhost:8080。
启动服务
D:/AI_browser/browserwing.exe --port 8080 --config D:/AI_browser/config.toml
curl http://localhost:8080/health
常用操作
导航
curl -X POST 'http://localhost:8080/api/v1/executor/navigate' \
-H 'Content-Type: application/json' \
-d '{"url": "https://www.baidu.com"}'
截图
curl 'http://localhost:8080/api/v1/executor/screenshot' -o screenshot.png
获取页面结构
curl 'http://localhost:8080/api/v1/executor/snapshot'
点击元素
curl -X POST 'http://localhost:8080/api/v1/executor/click' \
-H 'Content-Type: application/json' \
-d '{"ref": "<RefID from snapshot>"}'
AI 自动探索
curl -X POST 'http://localhost:8080/api/v1/ai-explore/start' \
-H 'Content-Type: application/json' \
-d '{
"task_desc": "在百度搜索 Python 教程,提取前5条结果",
"start_url": "https://www.baidu.com",
"llm_config_id": "deepseek"
}'
详细文档
- 完整管理 API:见 SKILL_ADMIN.md
- 浏览器控制 API:见 SKILL_EXECUTOR.md
- 配置文件:D:/AI_browser/config.toml
- 日志:D:/AI_browser/logs/browserwing.log