一键导入
playwright-testing-patterns
Best practices for E2E testing. Use when writing or debugging Playwright tests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Best practices for E2E testing. Use when writing or debugging Playwright tests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Design system patterns for reusable UI via atomic design, Tailwind tokens/variants, and accessibility. Use when creating atoms/molecules, theming, or hardening a11y.
Entity Framework Core best practices for configuration, queries, concurrency, and multi-tenancy.
Frontend architecture patterns for React apps (React Router 7, TanStack Query). Use when planning features, defining routes, data strategies, and component gaps.
Infrastructure standards for Docker, scripts, middleware, and authentication in multi-tenant deployments.
Integration testing performance optimization, test parallelization, cleanup strategies, and CI/CD categorization patterns. Use when optimizing test execution speed, managing test data, or structuring tests for automated pipelines.
ASP.NET Core Minimal APIs patterns for endpoints, DTOs, validation, and service integration. Use when implementing API endpoints, defining request/response contracts, or structuring API projects with clean separation of concerns.
| name | playwright-testing-patterns |
| description | Best practices for E2E testing. Use when writing or debugging Playwright tests. |
The Test Automation Engineer ensures the feature works as intended and prevents regression.
tests/.beforeEach for setup.test('should [expected behavior] when [condition]').getByRole('button', { name: 'Save' })getByText('Success')getByTestId('submit-btn')page.waitForTimeout().await expect(locator).toBeVisible().test.use({ storageState: ... }).