在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用test
星标18
分支1
更新时间2026年5月10日 23:02
Unit, integration, and end-to-end browser testing
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Unit, integration, and end-to-end browser testing
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| description | Unit, integration, and end-to-end browser testing |
| name | test |
Drive features from tests. For each behavior:
For end-to-end coverage, exercise the running app with rodney rather than mocking the browser.
Install rodney once:
go install github.com/simonw/rodney@latest
Drive a running app from the shell. Each command is short-lived and talks to the same persistent headless Chrome, so steps compose naturally as you iterate:
rodney start
rodney open http://localhost:8080
rodney click "button#login"
rodney wait ".dashboard"
rodney assert 'document.title' 'Dashboard'
rodney screenshot dashboard.png
rodney stop