I am automating some program where i fetch data from mongoDb and then fill that data on some form on ui.
It takes approx 10 minutes to complete the task for 1 entry.
Is there any way to make uiPath run bit faster?
Also when i fill data on ui then sometimes internet connectivity gets slow due to which form takes some time to load.
In that scenario as well uiPath throws error, that the target element is not found.
I have tried using delay activity but it makes program runs slow.
Is there any way to handle this kind of exception?
You can use the latest feature in UiPath studio, profile execution to check the time consumption of each activity. Based on that you can understand the module which is taking more time. Also if you are using type into or click activity, better to use Simulate or send windows messages if the application supports that input method.
@Riya_Bansal For your second behavior,use element exists to check on one ui element presence before enter the data in the page else you can throw the error.
@sangeethaneelavannan1
i cannot find element exists in modern experience
i am using 2022.10.3 version
i cannot switch to classic interface one as i am using many modern experience activities in my flow.
You can try using verification option in click and type into activities where after performing the activity a verification will happen depending on the ui element you provide and will retry if not sucessful. This can be used in combination with timeout property. so that bot verifies and inputs the data properly and also it speeds up a little when everything is smooth