Natural Language
Describe what you want to test in plain English. AI converts it to Playwright code. Example:- Clean TypeScript Playwright code
- Proper
expect()assertions - Comments explaining each step
- Ready to run in CI/CD
Tests take 2-5 minutes to generate. Watch live execution in the dashboard.
Recording
Click record, use your app normally, get Playwright code. Steps:- Dashboard → New Test → Record
- Perform actions in your app
- Click checkpoints to add assertions
- Stop recording → Code auto-generated
- Complex user flows
- Apps with lots of interactions
- Visual regression testing
Common Patterns
Login Flow
Login Flow
Form Submission
Form Submission
E-commerce Checkout
E-commerce Checkout
Tips
- Be specific: “Click the blue ‘Submit’ button” > “Submit form”
- Add assertions: Tell AI what to verify at each step
- Break it up: Create separate tests for different flows
- Use test suites: Group related tests together