bicentennial
bicentennial
Thanks for the assistance jignesh6990, but let me explain little more my question, sorry about that. We are preparing an automation test for an existing third party WinForms application, this...
For double click: i tried some like this, query works, element has value but DoubleClick method do nothing in UI... string nodeXPath= "..."; var element = MySession.FindElementByXPath(nodeXPath); MySession.Mouse.DoubleClick(element.Coordinates); Continue with...
Done!...: Example for double click on TreeView control node or any other UIElement: string nodeXPath= "..."; var element = MySession.FindElementByXPath(nodeXPath); MySession.Mouse.MouseMove(element.Coordinates); MySession.Mouse.DoubleClick(null); Lets continue research for expanded/collapsed state...
Done!...: Collapsed states for node in TreeView control: (node visible is required, validation out of the scope of the original question, but easy to accomplish...): var xmlDoc = new XmlDocument();...
Of course jsingh-qualitrol: I am using: Winapp driver: 1.1.1808.7001 Selenium.WebDriver v3.0.1 Selenium.Support v3.0.1 Appium.WebDriver v3.0.0.2 Testing [TestMethod]'s with Visual Studio 2017. We don't updrade to latest Selenium NuGet Packages v.3.14.0...
This is an update about the versions used successfully for the issue in this thread: I am using: Winapp driver: 1.1.1808.7001 Selenium.WebDriver v3.5.0 Selenium.Support v3.5.0 Appium.WebDriver v3.0.0.2 Testing [TestMethod]'s with...