Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

ui-test用户界面测试

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

261

周安装

11

GitHub Stars

589

下载量

92
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ui-test(用户界面测试)
来源仓库:https://github.com/sundial-org/awesome-openclaw-skills
仓库路径:skills/ui-test
安装命令:
npx skills add https://github.com/sundial-org/awesome-openclaw-skills --skill ui-test
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sundial-org/awesome-openclaw-skills --skill ui-test

简介

ui-test 用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。

  • 适合让 Agent 根据产品场景整理页面结构、生成 UI 方案或检查视觉一致性。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 使用时需结合现有品牌、设计系统和用户任务,避免堆砌装饰元素。
  • 涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出和对齐表现。

SKILL.md

UI Test — Plain English E2E Testing (🧪)

Describe your UI tests in plain English. The agent figures out how to find buttons, navigate the app flow, and execute each step — no selectors or code needed. It screenshots every major step, stitches them into a walkthrough video, and DMs you the result with a pass/fail report.

*Made in 🤠 Texas ❤️ PlebLab*

UI Test — Describe it. I'll test it.

Workflow

  1. Create — User names a test and describes steps in plain English
  2. Run — Agent opens the clawd browser, executes each step, screenshots each action
  3. Export — Agent generates a Playwright .spec.ts from the verified steps
  4. CI/CD — User drops the script into their test suite, runs with npx playwright test

Agent Execution Flow

When running a test:

  1. Load test definition: node scripts/ui-test.js get "<name>"
  2. Start clawd browser: browser action=start profile=clawd
  3. Navigate to the test URL
  4. For each plain English step: a. Interpret what the user means (click, type, assert, wait, etc.) b. Use browser action=snapshot to see the page c. Use browser action=act with the appropriate request (click/type/press/etc.) d. Take a screenshot after each step e. Record what selector/ref was used and whether it passed
  5. Save run results: node scripts/ui-test.js save-run "<name>" passed=true/false
  6. Report results to user with pass/fail per step

When exporting to Playwright:

  1. Load the test definition and most recent successful run
  2. Map each plain English step to Playwright API calls based on what worked during execution
  3. Generate a .spec.ts file with proper imports, test structure, and assertions
  4. Save to the user's project or a specified output path

Step Interpretation Guide

The agent should interpret plain English steps like:

User saysBrowser actionPlaywright equivalent
"click the Sign In button"act: click ref="Sign In button"page.getByRole('button', {name: 'Sign In'}).click()
"type hello@test.com in the email field"act: type ref="email" text="hello@test.com"page.getByLabel('Email').fill('hello@test.com')
"verify the dashboard shows Welcome"snapshot + check textexpect(page.getByText('Welcome')).toBeVisible()
"wait for the page to load"act: waitpage.waitForLoadState('networkidle')
"click the hamburger menu"act: click (find menu icon)page.getByRole('button', {name: 'menu'}).click()
"scroll down"act: evaluate fn="window.scrollBy(0,500)"page.evaluate(() => window.scrollBy(0, 500))
"check the Remember Me checkbox"act: click ref="Remember Me"page.getByLabel('Remember Me').check()
"select 'USD' from the currency dropdown"act: select values=["USD"]page.getByLabel('Currency').selectOption('USD')
"take a screenshot"browser action=screenshotpage.screenshot({path: 'step-N.png'})
"verify URL contains /dashboard"check current URLexpect(page).toHaveURL(/dashboard/)

Commands

Run via: node ~/workspace/skills/ui-test/scripts/ui-test.js <command>

CommandDescription
create <name> [url]Create a new test
add-step <name> <step>Add a plain English step
set-steps <name> <json>Replace all steps
set-url <name> <url>Set the test URL
get <name>Show test definition
listList all tests
remove <name>Delete a test
save-run <name>...Save execution results
runs [name]Show run history
export <name> [outfile]Export as Playwright script

Export Format

Generated Playwright files include:

  • Proper TypeScript imports
  • test.describe block with test name
  • test.beforeEach with navigation to base URL
  • Each step as a sequential action with comments showing the original English
  • Assertions where the user said "verify", "check", "should", "expect"
  • Screenshots on failure

Screenshots & Video

During test execution, the agent should:

  1. Before each step: take a screenshot → save as step-NN-before.jpg
  2. After each step: take a screenshot → save as step-NN-after.jpg
  3. On failure: take a screenshot → save as step-NN-FAIL.jpg

Screenshots are saved to: ~/.ui-tests/runs/<slug>-<timestamp>/

After the run completes, generate a walkthrough video:

ffmpeg -framerate 1 -pattern_type glob -i '~/.ui-tests/runs/<folder>/step-*.jpg' \
  -vf "scale=1280:-2" -c:v libx264 -pix_fmt yuv420p -y output.mp4

Then send the video to the chat.

Storage

  • Test definitions: ~/.ui-tests/<slug>.json
  • Run history: ~/.ui-tests/runs/<slug>-<timestamp>/run.json
  • Screenshots: ~/.ui-tests/runs/<slug>-<timestamp>/step-*.jpg
  • Video: ~/.ui-tests/runs/<slug>-<timestamp>/walkthrough.mp4
  • Exported scripts: user-specified path or ./tests/<slug>.spec.ts

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.87%
按下载量换算31

Claude

28.45%
按下载量换算26

Cursor

18.66%
按下载量换算17

Gemini CLI

10.16%
按下载量换算9

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills