بنقرة واحدة
e2e-implementer
Create and run E2E tests using Playwright in the `apps/e2e` module.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create and run E2E tests using Playwright in the `apps/e2e` module.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Implement and run tests adhering to valid architecture and best practices.
Implement and run tests adhering to valid architecture and best practices.
Bump the version of any apps/* module following semver, including syncing dependency references and secondary version files.
Use this skill to implement new scrappers using the Scrapling framework (https://github.com/D4Vinci/Scrapling).
Implement and run tests adhering to valid architecture and best practices.
Create and run E2E tests using Playwright in the `apps/e2e` module.
| name | e2e-implementer |
| description | Create and run E2E tests using Playwright in the `apps/e2e` module. |
Use this skill when implementing or modifying End-to-End (E2E) tests. These tests are distinct from unit/integration tests and are housed in a dedicated module.
apps/e2e.specs/: Contains test files (*.spec.ts).pages/: Page Object Models (POM).utils/: Helper functions..spec.ts (Playwright standard).Page.ts (e.g., LoginPage.ts).id attributes in the source code. Avoid using text-based locators or CSS classes unless absolutely necessary.scripts/run_e2e_tests.py script which handles isolation.apps/e2e does not import internal implementations from other apps directly (unless it's a shared type/constant). It should interact via the browser.python scripts/run_e2e_tests.py from the root. This will:
npm test inside apps/e2e (WARNING: Configured against local dev environment by default).