When I execute an activity on UiPath, I noticed that the robot waits for the element to disappear to continue to the next activity
Example: the robot clicks on a button, then the application starts charging and opens a new application
The robot doesn’t continue to the next activities unless the button disappears. However, the button disappearing depends on the robot continuing on the next application. So it gets stuck…
I do not want that. I didn’t see any property in that sense
Try this, after your click, use “Check App State” instead of the “Attach Window” for your next activity and put inside the “Target appears” block what you want to be done afterwards.
Do not forget to set an element to appear in the “Check App State”.
It’s not waiting for the thing you clicked to disappear (things don’t usually disappear, anyway). It’s waiting for the UI element for the next activity to appear.
It’s just working on finding the next activity’s element and executing the activity. Various things come into play like waiting for the page to finish loading, etc.