Google News
logo
Blue Prism - Interview Questions
Why do we use the Wait stage in Blue Prism?
The Wait stage is used to absorb the system latency and make sure that the process is going through the correct path. Typically, the wait in the starting of any action confirms the correctness of path and results in increased process resilience. The default timeout in the Wait stage is 5 seconds. The process will wait before performing an action until the timeout that the user has specified for the Wait stage upon running the object has passed.
 
Always throw an exception on timeout : One should not try to retrieve the process through the Wait stage. Besides, one should try an exception and let the process control and handle it. It may restart the system, or retry after an alert, or retry after some time.

Always with for the screen to change : One should use the wait stages after navigating to any stage that might be a cause to update screen. It ensures improved speed without absorbing any latency.
Advertisement