Uipath Activities |Different Types Of Activities


Uipath Activities |Different Types Of Activities

Activities

Uipath comes with a wide variety of activities to perform different automation tasks. With this rich set of activities. In addition to this, if we need additional features that are not present, we can create a custom activity that is explained in a later article. The image below represents the uipath studio


The activities are present in the left activities pane where all the activities are currently classified under different sections. The other flaps include the exit flap at the bottom. On the right is the Properties pane and the outline pane. At the top contains the toolbar.
Now let's go more to activities, at the beginning, I will explain frequently used activities, later, I will add more
Sequence
This activity is placed in the workflow of a group or contains a set of activities. All actions performed linearly are placed one after the other in a sequence.

Try Catch
This activity can be used instead of a sequence or inside a sequence where exception handling is required. This activity is divided into 3 parts. The TRY part contains the activities liable to generate an error, CATCH contains the activities which detect the error if it has occurred and the error handling code is placed here. Finally contains the final actions which must be performed in both cases, whether the exception has occurred or not.
Attribute
This activity is used to assign a variable with a value or an expression. We can even write Dotnet C # code snippets to perform operations such as database selection, string operations, DateTime operations, etc.
Excel activities
Scope of the Excel application
Open the specified and Excel and create the scope for the open Excel application once the activity is finished, the scope is closed. All related operations must be performed with In scope I .e .., inside the Excel application scope activity.
Reading range
Reads the specified excel and stores the output in the data table. This activity requires a range and sheet name. if no range is specified, it reads the entire sheet.
Write range
Write the data table to the specified Excel. This activity needs a range and a sheet. Can specify a non-existent sheet name to create a new one. If no range is specified, it writes from "A1".
Read cell
Reads the specified cell from the specified excel. This activity also requires the cell number and sheet name.
Write a cell
Write a particular value in the specified cell in the specified Excel file.
Note: Excel activities are used in the scope of the Excel application whereas workbook activities do not need to be used in the activity of the scope of Excel application.
CSV
Add CSV
Adds the specified DataTable to a CSV file, creating the file if it does not already exist. This activity requires a FilePath path - full of the CSV file. Datatable- Specifies the DataTable to add to the CSV file. Delimiter - Specifies the delimiter in the CSV file. It can be a comma (',') or a semicolon (';').
Read CSV
Reads all entries from a specified CSV file. This activity also requires a FilePath path - full of the CSV file. This activity gives the output data table - Represents the output data table which contains the information obtained from the CSV file.
Write in CSV
Replaces a DataTable specified in a CSV file. This activity requires AddHeaders - Boolean which specifies whether the column names of the DataTable will be added to the output CSV file, FilePath - Full path of the CSV file, Input-DataTable - Specifies the DataTable to write to the CSV file, Delimiter - Specifies the delimiter in the CSV file. It can be a comma (',') or a semicolon (';').
PDF
Read PDF text
Reads all characters from a specified PDF file and stores it in a string variable. This activity requires FileName - The full path of the PDF file to read. Only string variables and strings are supported.
Read PDF with OCR
Reads all the characters from a specified PDF file and stores it in a string variable using OCR technology. This activity requires File Name - The full path of the PDF file to read. Only string variables and strings are supported.
Web
Open browser
Opens the specified URL in the specified browser. This activity is used during web automation.
Screen scratching
This activity obtains data from the screen.
Type in
This activity enters the specified in a text field. This activity requires entering text in the text field.
Click on
This activity performs the click operation. Properties can be set to double-click, right-click, etc.

For More Information about UiPath Online Training  ClickHere   
Ph No: +91-9989971070, E-Mail ID: online@visualpath.in

Comments