con un clic
e2e-implementer
Create and run E2E tests using Playwright in the `apps/e2e` module.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Create and run E2E tests using Playwright in the `apps/e2e` module.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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 new skills for Claude Code. This skill automates the creation of skill directories and boilerplate SKILL.md files.
| 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).