我被困住了。我正在尝试使用Java(Winium)自动化桌面应用程序,因此无法自动化controltype.pane,因为它向我显示了automationid =“”和name =“” 曾经有Classname和ControlType。 xpath或名称或ID在这里如何工作。
ClassName:“ TreeView20WndClass” ControlType:“ ControlType.Pane” 文化:“(空)” AutomationId:“” LocalizedControlType:“窗格” 名称: ”” ProcessId:“ 3456” RuntimeId:“ 42 3868756” IsPassword:“假” IsControlElement:“真” IsContentElement:“真”
真正有帮助的人。
答案 0 :(得分:0)
如果需要使用类名查找,则可以使用以下代码:
driver.find_element_by_class_name('MySuperTextBox')
其中“ MySuperTextBox ”是您的案例“ TreeView20WndClass ”中的类名称。
有关更多详细信息,click here。