Generate Playwright/Cypress E2E tests from user flows
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill ai-e2e-gen --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ai E2e Gen?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-ai-e2e-gen)More formats (shields.io, HTML) on the badges page.
---
name: e2e-gen
description: Generate Playwright/Cypress E2E tests from user flows
---
# E2E Test Generator
Describe user flows, get Playwright or Cypress tests. No more writing login tests by hand.
## Quick Start
```bash
npx ai-e2e-gen "User signs up, verifies email, completes onboarding"
```
## What It Does
- Converts flow descriptions to E2E tests
- Generates Playwright or Cypress code
- Includes proper waits and assertions
- Adds data-testid selectors
## Usage Examples
```bash
# Generate Playwright test
npx ai-e2e-gen "User adds item to cart and checks out"
# Generate Cypress test
npx ai-e2e-gen "Admin creates new user" --framework cypress
# From existing page
npx ai-e2e-gen --url http://localhost:3000/dashboard
```
## Output Example
```typescript
test('user completes checkout', async ({ page }) => {
await page.goto('/products');
await page.click('[data-testid="add-to-cart"]');
await page.click('[data-testid="checkout"]');
await expect(page.locator('.success')).toBeVisible();
});
```
## Requirements
Node.js 18+. OPENAI_API_KEY required.
## License
MIT. Free forever.
---
**Built by LXGIC Studios**
- GitHub: [github.com/lxgicstudios/ai-e2e-gen](https://github.com/lxgicstudios/ai-e2e-gen)
- Twitter: [@lxgicstudios](https://x.com/lxgicstudios)
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!
Practical guide to testing web applications with screen readers for comprehensive accessibility validation.
克劳德代码会话的正式评估框架,实施评估驱动开发(EDD)原则
Go测试模式包括表格驱动测试、子测试、基准测试、模糊测试和测试覆盖率。遵循TDD方法论,采用地道的Go实践。
Django测试策略,包括pytest-django、TDD方法论、factory_boy、模拟、覆盖率以及测试Django REST Framework API。
使用JUnit 5、Mockito、MockMvc、Testcontainers和JaCoCo进行Spring Boot的测试驱动开发。适用于添加功能、修复错误或重构时。