Google News
logo
UiPath - Interview Questions
What is the role of properties in UiPath?
UiPath has a variety of activities that help us to automate desktop and web-based applications. Properties define such activities that are used for automating applications in the activity panel under UI automation. The basic properties of any project include ContinueOnError, Delay Before, Delay After, TimeoutMS, Target, and WaitForReady:
 
ContinueOnError : It is used when we want our automation continuously working even when the activity shows any error. Here, the 'False' is the default value. When an activity inside the 'try catch' is set to 'True', no error will be shown for the particular project.
 
Delay Before : It is used to pause the automation before any specific activity.
 
Delay After : It is used to pause the automation after any specific activity.
 
TimeoutMS : It is used to find the element before an error is displayed.
 
Target : It is used to identify the element before an activity begins.
 
WaitForReady : It is used to wait for the automation until the target is ready and before an activity is performed.
Advertisement