-1

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

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

帮助将非常明显。

4

1 回答 1

0

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

driver.find_element_by_class_name('MySuperTextBox')

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

更多详情请点击这里

于 2018-09-17T07:46:36.727 回答