While
The While component in Robbot RPA allows you to create a while loop structure that can be terminated or broken out of based on a specific condition. This loop executes a set of actions or components repeatedly as long as the termination condition evaluates to true.
Parameters
Condition : Enter the condition that determines whether the loop should continue or be terminated. This condition is typically a Boolean expression. Type: Boolean
Usage
To use the While component in your Robbot RPA project, follow these steps:
Open your Robbot RPA project.
Drag and drop the While component into your sequence or workflow.
Add the necessary actions or components within the loop that need to be executed repeatedly.
Configure the actions or components within the loop as per your requirements.
Enter the termination condition in the Condition parameter of the While component. This condition will be evaluated before each iteration to determine if the loop should continue or break.
If the condition evaluates to false, the loop will be terminated, and the program flow will continue with the next action or component outside the loop.
If the condition evaluates to true, the loop will continue executing the actions or components within it, and then re-evaluate the condition for the next iteration.
If at any point within the loop, you want to break out of the loop before the termination condition is met, you can use the Break component to explicitly break the loop.
Note: The While component requires the termination condition to be initially true for the loop to execute. If the condition is initially false, the loop will not be executed.
By using the While component in your Robbot RPA automation, you can create flexible while loop structures that allow you to break out of the loop based on specific conditions. This gives you more control over the flow of your automation and enables you to handle various scenarios efficiently.