我被卡住了。我正在尝试使用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”
帮助将非常感激。
如果您需要查找类名,可以使用以下代码:
driver.find_element_by_class_name( 'MySuperTextBox')
其中'MySuperTextBox'是您的案例'TreeView20WndClass'中的类名。
有关详细信息click here。