Continue
The Continue component in Robbot RPA allows you to skip the remaining statements within a loop iteration and move to the next iteration. It is used to control the flow of execution within loops and provides a way to bypass certain conditions or actions within the loop.
Usage
To use the Continue component in your Robbot RPA project, follow these steps:
Place the Continue component within the loop where you want to skip the remaining statements for a specific iteration. Configure any necessary conditions or actions before the Continue component to determine when the skip should occur. When the conditions or actions are met and you want to skip the current iteration, the Continue component will be triggered. The loop will then proceed to the next iteration, bypassing any remaining statements within the current iteration. Continue building your sequence or workflow by adding other components or actions that follow the loop.
Note:
The Continue component is typically used within loops such as the For Loop, While Loop, While Loop, or any other loop structure in your programming language or RPA tool.
It helps to optimize the flow of execution and allows you to skip unnecessary computations or actions within the loop for specific cases.
By utilizing the Continue component in your Robbot RPA automation, you can effectively control the flow within loops and improve the efficiency of your code by bypassing unnecessary iterations.