Scripted Journeys¶
Overview¶
Scripted is one of VibeTesting’s two execution modes (the other is Exploration). In scripted mode, you describe the exact steps you want to run in plain English.
When to use scripted mode¶
Use scripted mode for:
- Repeatable regression checks
- Known flows you want to validate precisely
- Verifying a specific behavior after a fix
How to write steps¶
Write each step in natural language with:
- The action (click / input text / scroll)
- The target element (what you want to click or type into)
- Optional input text
Example: a simple scripted journey¶
Tips:
- Prefer visible UI labels (“Add Item”, “Email”, “Save”) when possible
- Keep each step to a single action
- Be specific if there are multiple similar buttons/fields
Example:
Click the "Add Item" button
Click the "Insert item name here" input and enter "My item"