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

browser-workflow-to-playwright浏览器工作流 TO Playwright

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

346

周安装

14

GitHub Stars

1

下载量

109
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:browser-workflow-to-playwright(浏览器工作流 TO Playwright)
来源仓库:https://github.com/neonwatty/claude-skills
仓库路径:skills/browser-workflow-to-playwright
安装命令:
npx skills add https://github.com/neonwatty/claude-skills --skill browser-workflow-to-playwright
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/neonwatty/claude-skills --skill browser-workflow-to-playwright

简介

browser-workflow-to-playwright 用于将人类可读的工作流转换为 Playwright 端到端测试文件。

  • 适合在 CI 环境中运行自动化测试,支持测试计划编写和问题日志分析。
  • 通过解析工作流文档、检查现有测试并生成选择器来构建可执行的测试脚本。
  • 使用时需确认项目测试框架、运行命令和夹具数据,避免为通过测试而修改真实逻辑。
  • 涉及浏览器或外部服务时应区分本地模拟、测试环境和生产环境。

SKILL.md

Browser Workflow to Playwright Skill

You are a senior QA automation engineer. Your job is to translate human-readable browser workflow markdown files into Playwright E2E test files that can run in CI.

Task List Integration

CRITICAL: Use TaskCreate, TaskUpdate, and TaskList tools throughout execution for progress tracking and session recovery.

Task Hierarchy

[Main Task] "Convert: Browser Workflows to Playwright"
  └── [Parse Task] "Parse: browser-workflows.md"
  └── [Check Task] "Check: Existing tests"
  └── [Selector Task] "Selectors: Find for all workflows" (agent)
      └── [Ambiguous Task] "Resolve: Settings button selector" (user input needed)
  └── [Generate Task] "Generate: Playwright test file" (agent)
  └── [Approval Task] "Approval: Review generated tests"
  └── [Write Task] "Write: e2e/browser-workflows.spec.ts"

Session Recovery Check

At the start, call TaskList. If a "Convert: Browser Workflows to Playwright" task exists in_progress, check which subtasks completed (parsing, selector discovery, ambiguous resolutions, code generation) and resume from the appropriate phase.

The Translation Pipeline

/workflows/browser-workflows.md     ->     e2e/browser-workflows.spec.ts
     (Human-readable)                         (Playwright tests)

Use when the user has refined browser workflows and wants to promote them to CI.

Process

Phase 1: Read and Parse Workflows

Create main task "Convert: Browser Workflows to Playwright" and parse task.

  1. Read /workflows/browser-workflows.md. If missing, inform user and stop.
  2. Parse all workflows (each starts with ## Workflow: or ### Workflow:)
  3. Extract: name, description, URL, numbered steps/substeps, [MANUAL] tagged steps

Mark parse task completed with metadata (workflowCount, workflows, totalSteps, manualSteps).

Phase 2: Check for Existing Tests

Create check task.

  1. Look for existing e2e/browser-workflows.spec.ts
  2. If exists, parse to find which workflows are already translated
  3. Determine diff: new workflows to add, modified to update, removed to ask about

Mark check task completed with metadata (existingTestFile, toAdd, toUpdate, toRemove, hasCustomCode).

Phase 3: Explore Codebase for Selectors [DELEGATE TO AGENT]

Create selector discovery task. Spawn an Explore agent to find reliable selectors for every workflow step.

See references/selector-discovery.md for the full agent prompt, search patterns, and selector priority.

After agent returns, update selector task with metadata (selectorsFound, highConfidence, ambiguous, missing).

For each ambiguous selector, create a resolution task and ask the user to choose via AskUserQuestion. Mark each resolved with the chosen selector.

For missing selectors, flag for manual verification with TODO comments in the generated code.

Phase 4: Map Actions to Playwright

Translate natural language workflow steps to Playwright commands using the action mapping table.

See references/action-mapping.md for the full translation table.

Phase 5: Handle Untranslatable Steps

For steps that cannot be automated ([MANUAL] tagged, ambiguous selectors, platform-specific), use appropriate patterns: test.skip(), TODO comments, or best-guess selectors.

See references/untranslatable-patterns.md for code patterns for each case.

Phase 6: Generate Test File [DELEGATE TO AGENT]

Create code generation task. Spawn a general-purpose agent (sonnet model) to generate the complete Playwright test file from parsed workflows and selector mapping.

See references/agent-prompts.md for the full code generation agent prompt.

See examples/translation-example.md for a complete workflow-to-Playwright translation example.

Update generation task with metadata (workflowsTranslated, totalTests, skippedManual, todosForReview). Review TODOs with user before writing.

Phase 7: Handle Updates (Diff Strategy)

When updating existing tests:

  1. Parse existing test file for workflow names and // CUSTOM: modifications
  2. Compare with workflow markdown using content hashing
  3. Apply strategy: ADD new, SKIP unchanged, UPDATE modified, ASK about removed
  4. Preserve any // CUSTOM: code blocks, warn if conflicts exist

Phase 8: Review with User

Create approval task. Present translation summary showing:

  • Workflow counts and per-workflow step/test/manual/TODO breakdown
  • Selector resolution stats
  • Diff summary if updating existing file

Get explicit approval before writing. After approval, write to e2e/browser-workflows.spec.ts. Mark write task and main task completed with metadata (outputPath, workflowsTranslated, totalTests, selectorsResolved).

Present final summary with output path, translation table, selector resolution stats, and next steps (run tests, review TODOs, add to CI).

Test Independence

Since each step becomes a separate test, ensure independence:

  1. Each test sets up its own state (don't rely on previous test)
  2. Use test.beforeEach for common setup
  3. Consider test.describe.serial only if order truly matters (discouraged)
  4. Add setup steps within tests that need prior state

Error Handling

ScenarioAction
Missing workflow fileInform user, suggest running generator first
Unparseable workflowShow which failed, ask for clarification
No selectors foundList the step, ask user for selector
Conflicting selectorsShow options, let user choose
Playwright not configuredOffer to set up Playwright config

Output Files

  • Primary: e2e/browser-workflows.spec.ts -- the generated test file
  • Optional: e2e/browser-workflows.selectors.ts -- extracted selectors for reuse
  • Optional: .claude/workflow-test-mapping.json -- mapping for diff tracking

Session Recovery

If resuming from an interrupted session, use this decision tree:

TaskList StateResume Action
Main in_progress, no parse taskStart Phase 1
Parse done, no check taskStart Phase 2
Check done, no selector taskStart Phase 3
Selectors done, resolve tasks pendingAsk user to resolve remaining selectors
All resolved, no generate taskStart Phase 6
Generate done, no approval taskStart Phase 8
Approval done, no write taskWrite the file
Main completedShow final summary
No tasks existFresh start (Phase 1)

For partial selector resolution, read completed resolve tasks for user choices, present remaining to user.

Always inform user when resuming: workflows parsed, existing tests found, selectors resolved, code generation status, and next action.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.51%
按下载量换算31

OpenCode

24.18%
按下载量换算26

Codex

15.72%
按下载量换算17

windsurf

12.48%
按下载量换算14

Antigravity

7.31%
按下载量换算8

Gemini CLI

2.98%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills