agent-e2e
Installation
SKILL.md
E2E Test Discovery & Execution
You're here to discover E2E test scenarios, record them as YAML, or execute existing test cases.
Core Principle: Semantic Selectors
The problem: Traditional selectors (testId, CSS classes) break when UI changes.
The solution: Use semantic selectors based on accessibility properties. These match what users see.
# ❌ Fragile
{{dataTestId: "submit-btn"}}
# ✅ Stable
{{role: button, name: "Submit"}}