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

e2e-testing端到端测试

Agent Skill

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

总安装

1,139

周安装

47

GitHub Stars

10

下载量

372
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/oakoss/agent-skills --skill e2e-testing

简介

e2e-testing 用于辅助测试设计、用例整理和回归验证。

  • 它适合编写单元测试、端到端测试或根据日志定位问题。
  • 使用时需确认项目测试框架、运行命令和夹具数据。
  • 涉及浏览器或外部服务时,应区分本地模拟与生产环境。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

E2E Testing

Overview

Covers E2E test architecture and patterns using Playwright — how to structure test suites, organize tests, and apply proven patterns for authentication, mocking, visual regression, accessibility auditing, and CI parallelism. Focuses on the WHY and WHEN of test patterns rather than Playwright API specifics.

When to use: Designing test suite architecture, structuring Page Object Models, planning CI sharding strategies, setting up authentication flows, organizing tests with tags and annotations, implementing visual regression workflows, mocking network requests, auditing accessibility.

When NOT to use: Unit testing (use Vitest/Jest), API-only testing (use integration tests), component testing in isolation (use component test runners). For Playwright API details, browser automation, scraping, or troubleshooting Playwright errors, use the playwright skill.

Quick Reference

PatternAPI/ToolKey Points
Role-based locatorsgetByRole, getByText, getByLabelPreferred over CSS/XPath selectors
Page Object ModelClasses in tests/pages/Encapsulate all page-specific locators and actions
AuthenticationstorageState + setup projectsAuthenticate once, reuse across tests
Visual regressionexpect(page).toHaveScreenshot()Mask dynamic content to prevent flakes
Accessibility auditAxeBuilder from @axe-core/playwright.withTags() + .analyze() on key flows
Trace debuggingtrace: 'on-first-retry'Full DOM snapshots, network logs, and timeline
Network mockingpage.route()Stable tests without third-party dependencies
HAR replaypage.routeFromHAR()High-fidelity mocks from recorded traffic
Image blockingpage.route('**/*.{png,jpg}', abort)Speed up tests by skipping images
CI sharding--shard=1/4Split suite across parallel CI machines
Blob reports--reporter=blob + merge-reportsMerge sharded results into a single report
Test tags{tag: ['@smoke']}Filter tests by category with --grep
Test stepstest.step('name', async () => {})Group actions in trace viewer and reports
Changed tests only--only-changed=$GITHUB_BASE_REFRun only test files changed since base branch
Native a11y checkstoHaveAccessibleName, toHaveRoleLightweight alternative to full axe-core scans
Git info in reportscaptureGitInfo reporter optionLink test reports to commits for CI debugging
Web-first assertionsexpect(element).toBeVisible()Auto-wait instead of waitForTimeout
Fixture compositionmergeTests() / mergeExpects()Combine 3+ fixture modules into one test
Auto fixtures{auto: true} on test.extend()Run for every test (logging, screenshots)
Fixture options{option: true} on test.extend()Configurable via config or test.use()
Data-driven testsfor...of loop generating test() callsParameterized tests from arrays or CSV files
Context emulationbrowser.newContext() optionslocale, timezone, colorScheme, offline, isMobile
Two roles in one testConcurrent browser.newContext() callsSeparate storageState per context

Common Mistakes

MistakeCorrect Pattern
Using page.waitForTimeout() for element visibilityUse web-first assertions like expect(element).toBeVisible() which auto-wait
Writing raw locators directly in test filesEncapsulate all selectors in Page Object Model classes
Testing third-party APIs (Stripe, Auth0) directlyMock external services with page.route() for stable, fast tests
Debugging CI failures with screenshots instead of tracesConfigure trace: 'on-first-retry' and use Playwright Trace Viewer
Sharing state between tests via global variablesUse a fresh BrowserContext per test for full isolation
Running all tests in a single CI jobUse Playwright sharding (--shard=1/N) across parallel machines
Using CSS/XPath selectors for element locationUse role-based locators that survive refactors and enforce accessibility
Logging in via UI in every testUse storageState with setup projects to authenticate once
Using injectAxe/checkA11y from axe-playwrightUse AxeBuilder from @axe-core/playwright with .analyze()
Committing storageState JSON files to gitAdd playwright/.auth/ to .gitignore
Relying on storageState for sign-out testsSign-out invalidates server session — sign in via UI for each sign-out test
Assuming storageState persists sessionStorageIt only saves cookies + localStorage — use addInitScript() for sessionStorage
Duplicating test code for locale/currency variantsUse fixture options ({option: true}) with per-project config overrides
Creating fixtures without mergeTests() for 3+ modulesUse mergeTests() to compose fixture files into a single test export

Delegation

  • Discover which user flows lack E2E coverage: Use Explore agent
  • Build a full Page Object Model test suite for an application: Use Task agent
  • Plan a CI sharding strategy for a large test suite: Use Plan agent
For Playwright API details, browser automation, scraping, stealth mode, screenshots/PDFs, Docker deployment, or troubleshooting Playwright errors, use the playwright skill.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.91%
按下载量换算145

Claude

29.14%
按下载量换算108

Cursor

19.58%
按下载量换算73

Gemini CLI

10.36%
按下载量换算39

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills