I have a problem with an application that uses double click control, in the angular page I find an example of how it is implemented and I would like to double click on the example control but I can not get it
The example page is: here together with output.
the button on the bottom has implemented the control with which I need to interact ng-dblclick= getdetails()
I tried to execute the js directly and use actions with xpath but it has not served
IJavaScriptExecutor js = (IJavaScriptExecutor)driver;
js.ExecuteScript("getdetails()");
new Actions(driver).DoubleClick(driver.FindElement(By.XPath("/html/body/div/input"))).Perform();
What I can do?
Thanks for help.