c# - 控制Windows 10的弹出窗口

时间:2016-01-25 20:41:48

标签: c# automated-tests ui-automation

我在使用C#进行UIAutomation时遇到问题。 在Windows 10上单击已测试的应用程序中的链接后,将显示弹出窗口,我无法控制它。

下图:Screenshot

我的代码来获取它:

AutomationElement ele = null;
        while (ele == null)
        {
            try {
                ele = AutomationElement.RootElement.FindFirst(TreeScope.Subtree, new PropertyCondition(WindowPattern.IsModalProperty, true));


                Console.WriteLine(ele.Current.Name);

            } catch (NullReferenceException) {


            }

0 个答案:

没有答案