无法使用winium在桌面应用程序中自动化Treeview中的列表项

问题描述 投票:-1回答:1

我被卡住了。我正在尝试使用java(Winium)自动化桌面应用程序,我无法自动化controltype.pane,因为它向我显示了automationid =“”和name =“”,因为它有Classname和ControlType。 xpath或name或id如何在这里工作。

ClassName:“TreeView20WndClass”ControlType:“ControlType.Pane”Culture:“(null)”AutomationId:“”LocalizedControlType:“pane”Name:“”ProcessId:“3456”RuntimeId:“42 3868756”IsPassword:“False”IsControlElement: “True”IsContentElement:“True”

帮助将非常感激。

java selenium-webdriver winium
1个回答
0
投票

如果您需要查找类名,可以使用以下代码:

driver.find_element_by_class_name( 'MySuperTextBox')

其中'MySuperTextBox'是您的案例'TreeView20WndClass'中的类名。

有关详细信息click here

© www.soinside.com 2019 - 2024. All rights reserved.