我在使用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) {
}