我正在编写一个测试方法来启动一个窗口应用程序。
下面是我的代码
namespace UnitTestProject1
{
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
ProcessStartInfo P = new ProcessStartInfo("C:\\Windows\\System32\\notepad.exe");
Application app = Application.Launch(P);
}
}
}
运行此测试后,会打开记事本窗口,然后引发以下异常
System.MissingMethodException:找不到方法:'System.Windows.Rect System.Windows.Automation.Provider.IRawElementProviderFragment.get_BoundingRectangle()