pause¶
Pause playbook execution and wait for user confirmation before continuing.
Usage Example¶
actions:
- command:
command: "setup_test_environment.sh"
# Pause for manual inspection
- pause:
message: "Verify test environment before continuing"
description: "Manual verification checkpoint"
# Continue with tests after user confirms
- test: verify_setup
Parameters¶
Parameter |
Type |
Description |
|---|---|---|
|
string |
Message displayed to user during pause (optional) |
|
string |
Name for this pause point (optional) |
|
string |
Human-readable description (optional) |
Notes¶
Execution halts until user manually resumes
Useful for debugging, manual verification, or interactive testing
User can inspect VM state before continuing
Not recommended for automated/production experiments
See Also¶
idle for automatic delays
screenshot for capturing screen state