Hello,
Right now, we don't have any official ways for handling the error or any best practices for that in PAD.
From my experiences, error handling in PAD is depend on the type of your process, so you have to decide how to handle the error if it occurs.
So, in my cases, I used these kinds of things to handle the error:
1. You should separate your process with many sub flows for each step so that you can easy to manage the error. Inside each sub flow, you can have this action: On Error Block (it is a try catch block), by using this action you can catch the error then decide the next steps if the error occurs.
2. You should have many actions for: If text on screen, if web page contains, If image, If window. By using these actions you can check wheather the text, image, control appears on screen or not.
3. You should add logs into a List or Datatable for every steps and when an error occurs you have all the logs for troubleshooting. These logs should be written to a CSV file and stored in a folder.
Thanks and hope it can help you.
Mike
---------------------------------
Did I answer your question? Please consider to Mark my post as a solution! to guide others