unsure of why this debug this browser message stops my uipath steps to get stuck , without clicking on cancel it doesn’t go to next step in my automation
Hi @Ashwini_Mahale ,
Are you using a Breakpoint at this step?
If so, then that is why the automation doesn’t proceed.
If that is not the case, then could you try including an Element Exists Activity and pass in the Cancel Button Selector details?
This activity outputs a Boolean Value after a provided timeout(default is 30 seconds, you can lengthen/shorten it if you want to from the screenshot below) is to check if the bot is able to identify the Cancel Button.
Kind Regards,
Ashwin A.K
Hi @Ashwini_Mahale
Use element exist activity which will return Boolean value i.e. True or False , if you feel manually also it takes time then increase timeout accordingly
Then Use if Condition and pass your Boolean variable if its True then use send mail activity saying that Page dint load/open
Thanks