Goal
Turn one exploratory run into:- A named local YAML test
- A pushed test on Revyl
- A runnable regression check
1. Run focused exploration
Start from a live dev session:2. Capture a conversion artifact
Ask the agent to produce a compact artifact:- Test name in kebab-case (for example
bypass-login-home) - Preconditions (build, account state, environment)
- Ordered steps (actions only)
- Validations (visible outcomes only)
- Variables needed (credentials, dynamic values)
3. Create the test shell
Use standard test commands:4. Convert ad hoc flow into robust assertions
When translating steps:- Keep one action per instruction.
- Keep validations separate from actions.
- Validate outcomes, not transient loading states.
- Use variables for credentials and dynamic values.
5. Push and execute on the platform
6. Definition of done
Your conversion is done when:- The test passes on correct app behavior.
- The test fails on the intended regression.
- The scenario is understandable by another engineer from YAML + test name alone.