Action group: Base actions
This action is intended to create an action loop that runs as long as the result of the condition is "True". To add a condition, you can use the expression construction tool in the "Condition" parameter. To add a sequence of actions to the loop body, you must move them to the outline of the "Loop body" block.
Property | Description | Type | Filling example | Mandatory field |
Parameters | ||||
Condition | Condition | Robin.Boolean | true | Yes |
Since this boolean expression is evaluated before each loop execution, the while loop is executed zero or more times.
Select the "While" action from the "Base actions" action group and move it to the script.
Fill the loop body (the block inside the loop where the algorithm for the robot's operation is written) with the necessary actions;
Example of filling:
Set the parameters of the action:
Condition (the criterion that will be used to decide whether to continue or terminate the cycle).
Example of filling:
If the condition is filled in using the expression construction tool, it will be displayed in the Condition section inside the loop.
Expression tool:
If the checkbox is filled in, the loop condition is True. If the checkbox is not filled in and no other condition is specified, the loop condition is considered to be False.
An example of a loop with a condition filled in using the Expression tool:
The excel file contains the date and temperature for that date. You need to find the first day in the list when the temperature became negative.
Robot completed successfully.
The algorithm looped through the values of the collection and will stop as soon as it encounters the first negative number. The robot displays a dialog box with the result.