基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/wojons/skills --skill testing-e2e命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Use when you need comprehensive accessibility auditing including WCAG compliance, legal requirements mapping, and user testing with disabilities
Apply systematic adversarial thinking patterns including devil's advocate, assumption busting, red teaming, and white hat security approaches
A 10-step methodology for building software with AI collaboration - from north star through automated Ralph loop execution with zero human-in-the-loop code writing
| name | testing-e2e |
| description | Run end-to-end tests for complete user workflows |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Test complete user workflows from start to finish in a production-like environment.
Use this skill when:
# Run E2E tests with common frameworks
npm run test:e2e # Cypress, Playwright, Selenium
npx cypress run # Cypress specifically
npx playwright test # Playwright
pytest tests/e2e/ # Python with Selenium
# Run specific E2E test suites
npm run test:e2e -- --spec "cypress/e2e/login.cy.js"
npx playwright test login.spec.js
# Run with different browsers
npx playwright test --browser=all
npx cypress run --browser chrome
# Run with visual testing
npx playwright test --screenshot=on
End-to-End Test Results:
──────────────────────────────
✅ User Registration Flow
✓ Visit registration page
✓ Fill registration form
✓ Submit form successfully
✓ Verify confirmation email
✓ Login with new credentials
❌ Checkout Flow
✗ Add item to cart
✓ Proceed to checkout
✗ Payment processing fails (Timeout)
Error: Payment gateway timeout after 30s
⚠️ Account Settings
⚠️ Password change saves but email not sent
Summary: 12 scenarios, 9 passed, 2 failed, 1 warning
Test Duration: 4m 23s