Hi @santhoshsaravanan91
The “Execution Time” activity is not a built-in activity in UiPath.
However, you can use the “System.DateTime.Now” property to measure the time taken for each step in a workflow.
To use the “System.DateTime.Now” property to measure execution time:
- Drag a “Assign” activity onto the designer panel.
- In the “Value” field, enter “System.DateTime.Now”. This will store the current time as a variable.
- Set the “To” field to a variable that will hold the start time.
- Add the steps that you want to measure the execution time for after the “Assign” activity.
- Drag another “Assign” activity onto the designer panel and set the “Value” field to “System.DateTime.Now”.
- Set the “To” field to a variable that will hold the end time.
- Use a formula such as “EndTime - StartTime” to calculate the elapsed time.
- Use the “Write Line” activity to output the elapsed time to the UiPath output panel or to a log file.