Agent Browser Cli.Bak.Skip
/install agent-browser-cli-bak-skip
Agent Browser
Vercel 出品的浏览器自动化 CLI,基于 Playwright,比标准浏览器工具更快更灵活。
快速开始
agent-browser open \x3Curl> # 打开网页
agent-browser snapshot # 获取页面可访问性树
agent-browser click @\x3Cref> # 点击元素(用ref引用)
agent-browser fill @\x3Cref> "内容" # 填入内容
agent-browser close # 关闭浏览器
常用命令
导航
agent-browser open \x3Curl> # 打开URL(别名:goto, navigate)
agent-browser back # 后退
agent-browser forward # 前进
agent-browser reload # 刷新
交互
agent-browser click \x3Csel> # 点击
agent-browser dblclick \x3Csel> # 双击
agent-browser fill \x3Csel> "text" # 填入(清空后填)
agent-browser type \x3Csel> "text" # 输入(追加)
agent-browser select \x3Csel> \x3Cvalue> # 选择下拉选项
agent-browser check \x3Csel> # 勾选复选框
agent-browser uncheck \x3Csel> # 取消勾选
agent-browser press \x3Ckey> # 按键(Enter, Tab, Escape等)
获取信息
agent-browser snapshot # 获取可访问性树(推荐)
agent-browser get text \x3Csel> # 获取文本
agent-browser get html \x3Csel> # 获取HTML
agent-browser get value \x3Csel> # 获取输入值
agent-browser get title # 获取页面标题
agent-browser get url # 获取当前URL
agent-browser screenshot [path] # 截图
agent-browser screenshot --annotate # 带标注的截图
元素定位
通过 snapshot 输出的 ref(如 @e14)直接引用:
agent-browser click @e14
agent-browser fill @e13 "hello"
或使用 CSS 选择器:
agent-browser click "#submit"
agent-browser fill "input[name='email']" "[email protected]"
或使用 ARIA 角色查找:
agent-browser find role button click --name "Submit"
agent-browser find text "Sign In" click
agent-browser find label "Email" fill "[email protected]"
agent-browser find placeholder "Search" type "query"
典型工作流
1. 签到任务
# 打开登录页
agent-browser open \x3C签到页面URL>
# 获取页面结构
agent-browser snapshot
# 点击登录/签到按钮(用实际ref替换 @eXX)
agent-browser click @eXX
# 等待页面加载
sleep 2
agent-browser snapshot
2. 填表任务
agent-browser open \x3C表单URL>
agent-browser snapshot
# 填入各字段
agent-browser find label "用户名" fill "myuser"
agent-browser find label "密码" fill "mypassword"
agent-browser find role button click --name "提交"
3. 定时签到(配合cron)
创建脚本 ~/.openclaw/scripts/daily-checkin.sh:
#!/bin/bash
agent-browser open \x3C签到URL>
sleep 2
agent-browser find role button click --name "签到"
agent-browser screenshot /tmp/checkin_$(date +%Y%m%d).png
agent-browser close
注意事项
- 先 snapshot 再操作 - 每次页面变化后重新获取 ref
- 添加等待 - 页面加载需要时间,用
sleep 2或等待 - 保持浏览器开启 - 多个操作可以在同一浏览器会话中完成
- 完成后关闭 - 用
agent-browser close释放资源
依赖安装
如果 agent-browser 未安装:
npm install -g agent-browser
agent-browser install
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install agent-browser-cli-bak-skip - After installation, invoke the skill by name or use
/agent-browser-cli-bak-skip - Provide required inputs per the skill's parameter spec and get structured output
What is Agent Browser Cli.Bak.Skip?
使用 agent-browser CLI 进行浏览器自动化。用于签到、填表、截图、信息抓取等需要控制浏览器的任务。触发条件:(1) 用户要求自动化浏览器操作 (2) 需要签到、填表、点击按钮 (3) 需要抓取网页内容作为研究素材. It is an AI Agent Skill for Claude Code / OpenClaw, with 118 downloads so far.
How do I install Agent Browser Cli.Bak.Skip?
Run "/install agent-browser-cli-bak-skip" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Agent Browser Cli.Bak.Skip free?
Yes, Agent Browser Cli.Bak.Skip is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Agent Browser Cli.Bak.Skip support?
Agent Browser Cli.Bak.Skip is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Agent Browser Cli.Bak.Skip?
It is built and maintained by huang-shao (@huang-shao); the current version is v1.0.0.