Recently we have had some problems by using ArtOfTest(telerik testing framwork using 2022 version).
There are some methods doesn't work after migrating to Edge (Version 111.0.1661.41 (Official build) (64-bit)) which IE is retired that we had to change the browser.
Below is the code after change. we have to control the mouse to click popup and copy the message which should work by using AlertDialog of ArtOfTest. So is there some new solution or better way to fix this issue?
Manager.Current.DialogMonitor.AddDialog(new AlertDialog(Manager.Current.ActiveBrowser, DialogButton.OK));
Manager.Current.DialogMonitor.Start();
// to retreive pop up text
var message = element.GetAttributeValue("onclick");
Dose anyone have same problem?