Handling Unwanted alert message in BluePrism

haldar_abhijit

New Member
How to handle unwanted alert that appears 'n' no of times during application execution time? It's a web based SAP application. There is no specific scenario when the alert will arise.
 

Pete_L

Active Member
In each of your SAP object's actions, you should be first waiting for the proper screen before proceeding. In that Wait step, you can enter multiple screen elements. Think of these as separate paths within the action. These screen element parameters are called "steps". The first "step" that is true (reading from the top of the list down), will determine the path to be followed. If you set the first "step" to an element in the alert, it will effectively always check for the alert message before checking for whatever screen elements you coded in "steps" 2 to n.

Hope this helps.
 
Top