Template generator for E2E test definitions. Creates structured test files for use with test-e2e skill. Triggers on keywords: e2e template, test template, create test definition
Scanned 9/6/2026
Install to Claude Code
npx -y skills add MatiasComercio/agentic-config --skill e2e-template --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of E2e Template?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/matiascomercio-e2e-template)More formats (shields.io, HTML) on the badges page.
---
name: e2e-template
description: "Template generator for E2E test definitions. Creates structured test files for use with test-e2e skill. Triggers on keywords: e2e template, test template, create test definition"
project-agnostic: true
allowed-tools:
- Read
- Write
---
# E2E Test: <Test Name>
<!--
Template for E2E test definitions.
Copy this file and fill in the sections below.
Usage: /test-e2e <path-to-your-test>.md
-->
## User Story
As a <user type>
I want to <action>
So that <benefit>
## Pre-Conditions
- Application is running at base URL
- <any specific state requirements>
## Test Steps
1. **Navigate** to `<path>`
2. **Verify** page title contains "<expected text>"
3. **Screenshot** "initial_state"
4. **Click** "<button text or selector>"
5. **Verify** "<expected result>"
6. **Type** "<text>" into "<input selector>"
7. **Screenshot** "after_action"
8. **Verify** <final condition>
## Success Criteria
- [ ] Page loads without errors
- [ ] <specific criterion 1>
- [ ] <specific criterion 2>
- [ ] All screenshots captured successfully
## Expected Output
```json
{
"test_name": "<Test Name>",
"status": "passed",
"screenshots": [
"{PROJECT_ROOT}/outputs/e2e/<test-name>/01_initial_state.png",
"{PROJECT_ROOT}/outputs/e2e/<test-name>/02_after_action.png"
],
"error": null
}
```
## Notes
- Video recording is explicit: use `playwright-cli video-start` before and `video-stop` after the test flow. Output saved to `{PROJECT_ROOT}/outputs/e2e/`
- Screenshots saved to `{PROJECT_ROOT}/outputs/e2e/<test-name>/`
- Use descriptive screenshot names for clarity
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!