我有一个对象树,它在表父级中有行对象。我正在尝试将所有这些行放入AutomationElementCollection
AutomationElementCollection asdf = ParentTableObj.FindAll
(
TreeScope.Children,
new PropertyCondition
(
AutomationElement.NameProperty,
"I want to use regex here"
)
);
所有行都AutomationElement.NameProperty
包含字符串“行”。但是,它们是该字符串的变体 - 例如“Row1”、“Row2”、“TopRow”……
似乎我可能遗漏了一些东西,因为该FindAll
方法允许您定义TreeScope
并找到与提供的参数AutomationElement
匹配的any 。Condition
我只是希望我的条件不受限制,因为我已经可以通过TreeScope
.