Repeat steps as long as a condition remains true.
When to Use
- Repeat until condition met
- Poll for status changes
- Retry with max attempts
- Process data in batches
Settings
Basic
- Description: Name your loop
- Max Iterations: Set to prevent infinite loops
- Condition:
- Left Expression
- Operator
- Right Expression
- AND/OR logic
Error Handling
- Error Flow: Steps if an error happens
- Continue on Error: Keep looping after errors
Inside the While Loop
- Add steps with “+”
- Steps repeat while condition is true
Tips
- Always set Max Iterations
- Ensure condition can become false
- Use counter variables as needed
- Use Sleep/Delay for polling
- Condition is checked before each round