CRON Schedules
Automate recurring test runs on a schedule — no CI/CD pipeline required.
Creating a Schedule
- Click Run to open the Execution Modal.
- Switch to the Schedule Run tab (top of the modal).
- Fill in the standard run fields (project, environment, folder).
- Enter a Schedule Name — this is used as the
groupNamefor all triggered executions. - Enter or select a CRON expression (e.g.,
0 2 * * *= daily at 02:00 UTC). Use the preset buttons for common intervals. - Click Save Schedule.
The schedule is immediately registered in the live scheduler — no server restart needed.
CRON Expression Reference
| Expression | Meaning |
|---|---|
0 * * * * | Every hour |
0 2 * * * | Every day at 02:00 UTC |
0 2 * * 1 | Every Monday at 02:00 UTC |
0 2 1 * * | First day of every month at 02:00 UTC |
*/15 * * * * | Every 15 minutes |
Managing Schedules
Go to Settings → Schedules to see all active CRON schedules for your organization:
| Column | Description |
|---|---|
| Name | The schedule name / group name |
| CRON Expression | The schedule interval |
| Environment | Target environment for triggered runs |
| Folder | Test folder path |
Click Delete to permanently remove a schedule and cancel all future executions.
Note: Users with the Viewer role cannot delete schedules.
Triggered Execution Grouping
All executions triggered by a schedule share the same groupName (the schedule name). Use Grouped View on the dashboard to see all runs from a schedule together with a pass/fail summary across runs.