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

playwright-flow-recorderPlaywright flow recorder 测试

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

3

下载量

102
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hopeoverture/worldbuilding-app-skills --skill playwright-flow-recorder

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合编写单元测试、端到端测试或根据失败日志定位问题。
  • 使用时需确认项目测试框架、运行命令和夹具数据,避免误改逻辑。
  • 涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。
  • playwright-flow-recorder 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Playwright Flow Recorder

Generate Playwright test scripts from natural language scenario descriptions.

Overview

To create E2E tests from user flow descriptions, this skill translates natural language scenarios into executable Playwright test code with proper assertions, error handling, and best practices.

When to Use

Use this skill when:

  • Converting user stories to E2E tests
  • Generating tests from acceptance criteria
  • Creating test scripts from flow descriptions
  • Translating business requirements into tests
  • Documenting user journeys as executable tests
  • Building test coverage for critical user paths

Flow Description Format

Simple Flow

User signs up with email and password

Detailed Flow

1. User navigates to signup page
2. User fills in email field
3. User fills in password field
4. User clicks signup button
5. User sees success message
6. User is redirected to dashboard

Acceptance Criteria Format

Given: User is on the homepage
When: User clicks "Get Started"
And: User fills in registration form
And: User submits the form
Then: User sees "Welcome" message
And: User is on the dashboard page

Generation Process

1. Parse Flow Description

To analyze the scenario, use scripts/parse_flow.py:

python scripts/parse_flow.py --input "user creates entity and adds relationships"

The script identifies:

  • Actions (navigate, click, fill, select, etc.)
  • Elements (buttons, inputs, links, etc.)
  • Assertions (sees, redirected, displays, etc.)
  • Data inputs (form values, selections, etc.)

2. Map to Playwright Actions

To convert parsed steps to Playwright code, use the action mapping:

Navigation:

  • "navigates to X" → await page.goto('/x')
  • "clicks X" → await page.getByRole('button', {name: /x/i}).click()
  • "selects X from Y" → await page.getByLabel(/y/i).selectOption('x')

Form Input:

  • "fills X with Y" → await page.getByLabel(/x/i).fill('y')
  • "enters X" → await page.getByLabel(/x/i).fill('x')
  • "types X" → await page.getByLabel(/x/i).type('x')

Assertions:

  • "sees X" → await expect(page.getByText(/x/i)).toBeVisible()
  • "is redirected to X" → await expect(page).toHaveURL(/x/)
  • "X displays Y" → await expect(page.getByRole('x')).toContainText(/y/i)

3. Generate Test Structure

To create the test file, use the template from assets/test-template.ts:

import { test, expect } from '@playwright/test'

test.describe('Flow Name', () => {
  test.beforeEach(async ({ page }) => {
    // Setup steps
  })

  test('scenario description', async ({ page }) => {
    // Test steps
  })

  test.afterEach(async ({ page }) => {
    // Cleanup steps
  })
})

4. Add Assertions and Waits

To ensure test reliability, add:

  • Explicit waits for dynamic content
  • Assertions after state changes
  • Error state checks
  • Loading state handling

5. Generate Data Fixtures

To create test data, use scripts/generate_fixtures.py:

python scripts/generate_fixtures.py --entity character --count 5

Usage Examples

Example 1: User Signup Flow

Input Description:

User signs up with email and password, then creates their first project

Generated Test:

import { test, expect } from '@playwright/test'

test.describe('User Signup and Project Creation', () => {
  test('user signs up and creates first project', async ({ page }) => {
    // Navigate to signup page
    await page.goto('/signup')

    // Fill in signup form
    await page.getByLabel(/email/i).fill('user@example.com')
    await page.getByLabel(/password/i).fill('SecurePass123!')
    await page.getByLabel(/confirm password/i).fill('SecurePass123!')

    // Submit signup
    await page.getByRole('button', { name: /sign up/i }).click()

    // Verify success message
    await expect(page.getByText(/welcome|success/i)).toBeVisible()

    // Verify redirect to dashboard
    await expect(page).toHaveURL(/\/dashboard/)

    // Create first project
    await page.getByRole('button', { name: /create project/i }).click()

    // Fill project form
    await page.getByLabel(/project name/i).fill('My First World')
    await page.getByLabel(/description/i).fill('An epic fantasy realm')

    // Submit project
    await page.getByRole('button', { name: /create|save/i }).click()

    // Verify project created
    await expect(page.getByText('My First World')).toBeVisible()
    await expect(page.getByText(/project created/i)).toBeVisible()
  })
})

Example 2: Entity Relationship Flow

Input Description:

User creates a character entity, then creates a location, and links them with "lives in" relationship

Generated Test:

import { test, expect } from '@playwright/test'

test.describe('Entity and Relationship Creation', () => {
  test('creates character and location with relationship', async ({ page }) => {
    await page.goto('/entities')

    // Create character
    await page.getByRole('button', { name: /create entity/i }).click()
    await page.getByLabel(/name/i).fill('Aria Shadowblade')
    await page.getByLabel(/type/i).selectOption('character')
    await page.getByLabel(/description/i).fill('A skilled rogue')
    await page.getByRole('button', { name: /save|create/i }).click()

    // Verify character created
    await expect(page.getByText('Aria Shadowblade')).toBeVisible()

    // Navigate back to entity list
    await page.getByRole('link', { name: /entities/i }).click()

    // Create location
    await page.getByRole('button', { name: /create entity/i }).click()
    await page.getByLabel(/name/i).fill('Shadowfen City')
    await page.getByLabel(/type/i).selectOption('location')
    await page.getByLabel(/description/i).fill('A dark urban settlement')
    await page.getByRole('button', { name: /save|create/i }).click()

    // Open character details
    await page.getByText('Aria Shadowblade').click()

    // Add relationship
    await page.getByRole('button', { name: /add relationship/i }).click()
    await page.getByLabel(/related entity/i).fill('Shadowfen')
    await page.keyboard.press('ArrowDown')
    await page.keyboard.press('Enter')
    await page.getByLabel(/relationship type/i).selectOption('lives_in')
    await page.getByRole('button', { name: /create|save/i }).click()

    // Verify relationship
    await expect(page.getByText(/lives in.*shadowfen/i)).toBeVisible()
  })
})

Example 3: Timeline Flow

Input Description:

User creates a timeline, adds three events, and reorders them chronologically

Generated Test:

import { test, expect } from '@playwright/test'

test.describe('Timeline Creation and Management', () => {
  test('creates timeline with events and reorders them', async ({ page }) => {
    await page.goto('/timelines')

    // Create timeline
    await page.getByRole('button', { name: /create timeline/i }).click()
    await page.getByLabel(/name/i).fill('Age of Heroes')
    await page.getByRole('button', { name: /create/i }).click()

    // Verify timeline created
    await expect(page.getByText('Age of Heroes')).toBeVisible()

    // Click to open timeline
    await page.getByText('Age of Heroes').click()

    // Add first event
    await page.getByRole('button', { name: /add event/i }).click()
    await page.getByLabel(/event name/i).fill('The Founding')
    await page.getByLabel(/date/i).fill('Year 0')
    await page.getByRole('button', { name: /save/i }).click()

    // Add second event
    await page.getByRole('button', { name: /add event/i }).click()
    await page.getByLabel(/event name/i).fill('The Great War')
    await page.getByLabel(/date/i).fill('Year 150')
    await page.getByRole('button', { name: /save/i }).click()

    // Add third event
    await page.getByRole('button', { name: /add event/i }).click()
    await page.getByLabel(/event name/i).fill('The Alliance')
    await page.getByLabel(/date/i).fill('Year 75')
    await page.getByRole('button', { name: /save/i }).click()

    // Verify all events visible
    await expect(page.getByText('The Founding')).toBeVisible()
    await expect(page.getByText('The Great War')).toBeVisible()
    await expect(page.getByText('The Alliance')).toBeVisible()

    // Sort chronologically
    await page.getByRole('button', { name: /sort/i }).click()
    await page.getByRole('menuitem', { name: /chronological/i }).click()

    // Verify order
    const events = page.locator('[data-testid="timeline-event"]')
    await expect(events.nth(0)).toContainText('The Founding')
    await expect(events.nth(1)).toContainText('The Alliance')
    await expect(events.nth(2)).toContainText('The Great War')
  })
})

Advanced Features

Authentication Flows

To handle authentication, use the setup from references/auth-patterns.md:

test.describe('Authenticated Flow', () => {
  test.use({ storageState: 'auth.json' })

  test('user performs action', async ({ page }) => {
    // Test steps with authenticated user
  })
})

API Mocking

To mock API responses, use Playwright's route handlers:

test('displays entities from API', async ({ page }) => {
  await page.route('**/api/entities', route => {
    route.fulfill({
      status: 200,
      body: JSON.stringify([
        { id: '1', name: 'Test Entity' }
      ])
    })
  })

  await page.goto('/entities')
  await expect(page.getByText('Test Entity')).toBeVisible()
})

Error Scenarios

To test error handling:

test('handles server error gracefully', async ({ page }) => {
  await page.route('**/api/entities', route => {
    route.fulfill({ status: 500 })
  })

  await page.goto('/entities')
  await expect(page.getByText(/error|failed/i)).toBeVisible()
})

Command Usage

Generate Test from Description

python scripts/generate_flow_test.py \
  --description "User signs up and creates project" \
  --output test/e2e/signup-flow.spec.ts

Generate Test from File

python scripts/generate_flow_test.py \
  --input flows/user-onboarding.txt \
  --output test/e2e/onboarding.spec.ts

Generate Multiple Tests

python scripts/batch_generate_tests.py \
  --flows-dir flows/ \
  --output-dir test/e2e/

Resources

Consult the following resources for detailed information:

  • scripts/parse_flow.py - Flow description parser
  • scripts/generate_flow_test.py - Test generator
  • scripts/generate_fixtures.py - Test data generator
  • references/playwright-actions.md - Action mapping reference
  • references/auth-patterns.md - Authentication patterns
  • references/selectors.md - Selector best practices
  • assets/test-template.ts - Base test template
  • assets/action-templates/ - Action code templates

Best Practices

  • Use semantic selectors (role, label, text)
  • Add explicit waits for dynamic content
  • Include assertions after state changes
  • Test error scenarios
  • Keep tests independent
  • Use descriptive test names
  • Add comments for complex flows
  • Group related tests with describe blocks

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.8%
按下载量换算39

Claude

29.49%
按下载量换算30

Cursor

17.64%
按下载量换算18

Gemini CLI

9.83%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills