Inspectツールで特定のAutomationIDを持つ要素に子があることがわかります。
しかし、私がこのようにそれらを取得しようとすると:
AutomationElement aPane = mainWindow.FindFirst(TreeScope.Subtree, new PropertyCondition(AutomationElement.AutomationIdProperty, "8264"));
AutomationElementCollection theChildren = aPane.FindAll(TreeScope.Subtree, Condition.TrueCondition);
aPane
要素は正しく取得されますが、要素theChildren
は空です。何がうまくいかなかったのか?