【发布时间】:2019-07-13 13:41:58
【问题描述】:
我正在使用带有 WinAppDriver 的 Appium 来控制 WinForms / WPF 应用程序。
我正在寻找一种编程方式来获取已检索到的元素上可用的属性列表。
我目前的想法是询问 className 并使用它来查找我预先配置的属性的静态字典。
var element = driver.FindElementByXPath(xPath);
var properties = element.getProperties(); // Is there something I can call here?
【问题讨论】:
标签: wpf windows appium winappdriver