how to get element list?
I want to click this button
but I can't get a list of buttons. how to get it?
I tried this but fail ` String xpath = "/Pane[@ClassName="#32769"][@Name="데스크톱 1"]/Window[@ClassName="#32770"][@Name="네이버 MYBOX 탐색기"]";
List<WebElement> list = (List<WebElement>) winapp.findElementsByXPath(xpath);`
What is shown in inspect.exe?
What is shown in inspect.exe?
this is it
You can use automation id 30100.
You can use automation id 30100.
But the ID of all buttons is 30100. I want to press the button I want.
If the UI is static then you can click by index, if not then ask the application developer to implement automation properties.
If the UI is static then you can click by index, if not then ask the application developer to implement automation properties.
Thanks for your comment