Hi,
Is it possible to detect .NET Framework exception like in screenshot and then click on Quit button?
Which library should we use?
It’d be grea if you can write its code snippet.
Thanks.
Hi,
Is it possible to detect .NET Framework exception like in screenshot and then click on Quit button?
Which library should we use?
It’d be grea if you can write its code snippet.
Thanks.
Hi,
I haven’t replicated the behaviour nor tested it yet, but I believe you can use RPA.Windows
library to detect such dialog, even get the text from it if possible, then based on the message deciding what button to press next. (or not seeing the dialog at all after a certain timeout and just continuing with the robot logic)
A few keywords of interest:
Microsoft .NET Framework
Continue
or Quit
Control Window
so you except the raised error (if the window isn’t found)Other useful articles on identifying locators:
Good luck and let us know what was your solution!
Thanks a lot! I will try this out.