WinAppDriver
WinAppDriver copied to clipboard
Unable to click on hyperlink
Hi Team, I am trying to click on hyperlink in my desktop application the mouse not moving to that particular element The code I am using is WebElement menuItem = setupEngineSession.findElementByAccessibilityId("logsLink"); Actions action = new Actions(setupEngineSession); action.moveToElement(menuItem); action.click(menuItem); action.perform(); surprisingly the test case is passing,
After installation, I need to click the logs hyperlink which redirects to some directory
What is shown in inspect.exe?
@SireeshaDuvvuri have you tried chaining these commands instead of calling them individually?
action.moveToElement(menuItem).click().perform()