بنقرة واحدة
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: ... }).