So far we have learned what RPA is, and we have seen how simple it is to train a UiPath Robot by recording the activities of a task and running it. Automating mundane routine tasks is very easy with UiPath using the recorder. Before we start automating complex tasks, let us learn how to control the flow of activities from one to another.
In this chapter, we will learn about methods to lay down activities in an orderly fashion and how to control the flow. These are basic to any kind of programming. We will learn about putting activities in Sequences, Flowcharts, and loops. We will also look at logical control using if-else.
To train robots to process a type of transaction, it is very important to have the instructions in a methodical flow. Mostly, these instructions are executed in Sequences. Let us understand this in detail.
This chapter will...