Skip to main content

Break

The Break component in Robbot RPA allows you to exit or break out of a loop. It is commonly used when you want to terminate the execution of a loop prematurely based on a certain condition.

Parameters

The Break component does not require any parameters. It is a standalone component that can be placed within a loop structure.

Usage

To use the Break component in your Robbot RPA project, follow these steps:

Create a loop structure (such as a For Loop or While Loop) in your sequence or workflow.

Add the necessary actions or components within the loop that need to be executed iteratively.

Place the Break component at the point in the loop where you want to exit the loop based on a specific condition.

Configure any condition or logic that determines when the loop should be terminated.

When the Break component is reached during the loop execution and the specified condition is met, the loop will be terminated, and the program flow will continue with the next action or component outside the loop.

Note: The Break component can only be used within loop structures and cannot be used outside of them.

By using the Break component in your Robbot RPA automation, you have the flexibility to control the flow of your loops and exit them when certain conditions are met. This allows you to optimize your automation by skipping unnecessary iterations and improving the efficiency of your workflows.