我想用TestStack.White创建一个自动登录WinForms应用程序。这是我的代码:
private void button1_Click(object sender, EventArgs e)
{
Process[] process = Process.GetProcessesByName("XYapp");
TestStack.White.Application app = TestStack.White.Application.Attach(process[0].Id);
TestStack.White.UIItems.WindowItems.Window window = app.GetWindow("XYwindowName", TestStack.White.Factory.InitializeOption.NoCache);
TestStack.White.UIItems.Panel panel = window.Get<TestStack.White.UIItems.Panel>(TestStack.White.UIItems.Finders.SearchCriteria.ByText("Login"));
panel.Click();
...
}
XY应用程序主窗口有10多个面板,其中之一是“登录”面板。当我单击button1时,XY应用程序的“登录”面板将可见,因此可以使用。
但是我的WinForms应用程序死机了,当我关闭XY程序但我想进一步运行时,我又重新获得了控件。
在调试模式下,显示以下错误消息: “托管调试助手'DisconnectedContext':'为此RuntimeCallableWrapper转换为COM上下文0x15305d0失败...”
我想我理解为什么收到此消息,但是我不知道解决方案是什么。
有人可以帮助我吗? 谢谢
答案 0 :(得分:0)
对于这个愚蠢的问题,我们感到抱歉,解决方案只是创建一个新线程。
https://docs.microsoft.com/en-us/windows/desktop/winauto/uiauto-threading