我正在使用Applinx API将在AIX上运行的遗留应用程序与新的J2EE应用程序集成。 发送一些密钥后,我等待光标跳转到下一个字段:
wc = new GXWaitForCursor(new GXPosition(11, 22),new GXPosition(11, 33), 3000, 1000);
client.sendKeys("[enter]1[enter]2[enter]3[enter]3[enter]");
sr = new GXGetScreenRequest();
sr.addWaitCondition(wc);
screen = client.getScreen(sr);
虽然我可以看到(使用Applinx管理员)游标已经到达该位置,但它会等到超时失败。
有没有人遇到过这个问题?
感谢。