WinAppDriver icon indicating copy to clipboard operation
WinAppDriver copied to clipboard

Unable to click on hyperlink

Open SireeshaDuvvuri opened this issue 2 years ago • 2 comments

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

SireeshaDuvvuri avatar Jul 27 '23 13:07 SireeshaDuvvuri

What is shown in inspect.exe?

anunay1 avatar Jul 29 '23 11:07 anunay1

@SireeshaDuvvuri have you tried chaining these commands instead of calling them individually?

action.moveToElement(menuItem).click().perform()

Tree55Topz avatar Aug 08 '23 01:08 Tree55Topz