0

我正在尝试在 Citrix 应用程序中使用 Visual Studio 2015 进行 UITest。我的测试插入文本并按返回键、TAB 键等。正确发送文本后,输入未发送。我试过了:

 InputSimulator.SimulateKeyPress(VirtualKeyCode.RETURN);
 Keyboard.SendKeys("{ENTER}");
 Keyboard.SendKeys(EntClient,this.selectParams.EntClientSendKeysEnter, ModifierKeys.None);

以上都没有在应用程序中按下回车键。

4

1 回答 1

0

如果要将键盘或鼠标输入发送到在 Receiver 中运行的 Citrix 应用程序,则必须将输入发送到具有 Window Class 的窗口CtxICADisp

在此处输入图像描述

于 2016-06-25T15:05:17.123 回答