本文介绍了当使用"White.Core.Desktop"时,White Automation框架抛出异常.班级的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用White Framework进行自动化.当我尝试获取桌面实例时,出现异常"White.Core.Desktop的类型初始化程序引发了异常."

I am using White Framework for automation. when I trying to get desktop instance I got exception "The type initializer for 'White.Core.Desktop' threw an exception."

我的代码如下:

var window = White.Core.Desktop.Instance.Windows().Find(obj => obj.Title.Contains("TestAppHome"));

有没有什么方法可以捕获窗口而没有使用White.Core.Desktop类的异常?

Is there any way to capture the window without exception that is without using White.Core.Desktop class?

任何帮助将不胜感激!

推荐答案

尝试以下方法:

List<White.Core.UIItems.WindowItems.Window> windows = WindowFactory.Desktop.DesktopWindows();
var window = windows.Find(w => w.Title.Contains("TestAppHome"));

这篇关于当使用"White.Core.Desktop"时,White Automation框架抛出异常.班级的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 18:07