我正在尝试使用 .NET UI 自动化。我有一个我知道是用 .NET 编写的第三方应用程序,但我没有源代码。我正在使用 Process.Start("exe path"); 启动应用程序;并获取 processID,然后通过以下方式搜索主应用程序窗口
this.MainWindow = AutomationElement.RootElement.FindFirst
(TreeScope.Children,
new AndCondition(
new PropertyCondition(AutomationElement.ProcessIdProperty, this.ProcessId),
new PropertyCondition(AutomationElement.NameProperty, InitialWindowName)
));
这是工作查找但是在主窗口中,有一个菜单栏,其中包含常见的“文件,编辑,...”
所以,下一步我选择菜单栏并展开文件菜单
var menuBar = this.MainWindow.FindFirst(TreeScope.Children,
new PropertyCondition(AutomationElement.LocalizedControlTypeProperty, "menu bar"));
var fileMenu = menuBar.FindAll(TreeScope.Children, Condition.TrueCondition)[0];
var expandPattern = fileMenu.GetCurrentPattern(ExpandCollapsePattern.Pattern) as ExpandCollapsePattern;
if (expandPattern.Current.ExpandCollapseState != ExpandCollapseState.Expanded)
expandPattern.Expand();
Thread.Sleep(3000);
由于“文件”菜单选项是菜单栏中的第一个选项,所以这是扩展“文件”菜单选项
现在,我想调用“文件”菜单列表中的打印菜单项。
打印菜单项的名称为“打印文档 Ctrl+P”
所以我寻找
var printMenuItem = this.MainWindow.FindFirst(TreeScope.Descendants, new PropertyCondition(AutomationElement.NameProperty,"Print Document Ctrl+P"));
但没有成功。我尝试了不同的方式,比如获取所有项目的后代并遍历名称以查找它们是否有“打印”但没有成功,就像这样
var list = this.MainWindow.FindAll(TreeScope.Descendants, new PropertyCondition(AutomationElement.LocalizedControlTypeProperty,"menu item"));
for (int i = 0; i < list.count; i++)
{
if (list[0].Current.Name.IndexOf("Print") > -1)...