Do While with break
Description
This action component allows you to create a loop that execute a series of actions the condition is met. The series of actions will be run first, before the condition got evaluate. The actions in the Body will be executed repeatedly until the condition no longer met. You can insert break or continue actions in the body with conditions.
Input Properties
- Body (Sequence) – Add action components that you want to execute in loop.
- Condition (bool) – The specific condition to be evaluated after the first execution of the actions components in the body and before the next loop.
General Properties
- GlobalWaits (Checkbox) – Apply global waits when PreWait or PostWait are not specified.
- IgnoreError (Checkbox) – Continue the process flow without throwing error.
- PostWait (Checkbox) – Apply specified wait after execute the action.
- PreWait (Checkbox) – Apply specified wait before execute the action.