Window shows up sometimes

During a form fill, a pop up appears on certain occasions. Is there a way to check if the window shows up then do something, otherwise carry regular operations?

(Already tried element exists. It halts all process until element appears.)

Yes, we have to use element exists activity and check if it exists and then use IF condition to pass the output of element exists activity, if it exists, try sending hot key like escape or enter and then continue the flow.

Else, whatever the location, sending the hotkey like escape won’t affect the process (Unless and until you are working on the new screens or pop ups). So try sending it

@HiteshJeswani101

Use Parallel activity to handle this popup.

You need to place IF condition For the element exists, If it is true then only it will do the necessary steps, or else it will not wait

Hope this helps

Thanks