Winium.Desktop
Winium.Desktop copied to clipboard
Windows Pane having list of data can't be clicked using winium driver Java
Hi Team,
I am working on a rich client application where it has a pane with elements as shown in the screenshot.

and the pane details are as shown in the below screenshot captured via UISpy.exe
Trying to click the element inside the pane which is not possible
tried in many ways as below
-
Actions action = new Actions(driver); action.sendKeys(Keys.ARROW_DOWN).perform();
-
Actions clickActions = new Actions(driver); Action mouseMovements = clickActions.moveToElement(grpSel,592,409).build(); mouseMovements.perform(); clickActions.moveByOffset(592,409).build().perform(); clickActions.moveByOffset(592,409).click();
-
WebElement grpSel = driver.findElement(By.id("115")); grpSel.sendKeys(Keys.ARROW_DOWN);
Nothing is working, I am unable to find the solution for the same, Please help me out in getting solution for this issue. It is bit urgent and reply to the issue ASAP
Thanks and Regards, Deepak
Hi Deepak1687,
Were you able to resolve this issue? I am stuck in a similar case.