我正在使用FEST来测试我的Java对话框,我需要测试是否创建了一个新的模态对话框。
@Before
public void setUp() throws Exception {
TestFrame testFrame = GuiActionRunner.execute(new GuiQuery<TestFrame>() {
@Override
protected TestFrame executeInEDT() throws Throwable {
panel = new CustomPanel();
return new TestFrame(panel);
}
});
frameFixture = new FrameFixture(testFrame);
frameFixture.show();
frameFixture.robot.waitForIdle();
}
注意:TestFrame是一个帮助类,它扩展了JFrame以用于单元测试。
在我的测试中,我单击一个按钮,显示模式对话框。我正在尝试查找并验证对话框是否已创建,但我的所有尝试都无法找到任何内容:
WindowFinder.findDialog("Window Title")).using(robot);
其中robot =
我也尝试过指定机器人的查找范围:
robot.settings().componentLookupScope(ComponentLookupScope.ALL);
网上有很多FEST示例可以调用robot()
,但我无法了解这个机器人功能应该是什么或者是什么。
为什么我无法找到新创建的弹出对话框?
答案 0 :(得分:1)
尝试添加查找时间:
WindowFinder.findDialog(MyDialog.class).withTimeout(10000).using(robot);
答案 1 :(得分:0)
最近,我也在使用FEST进行测试。
当处理相同的情况时,我使用以下方法来模拟“获取此窗口/对话框”操作
private DialogFixture blablawindow;
...
blablawindow = WindowFinder.findDialog("XXX").using(robot());
blablawindow.button("button1").click();
由于我是FEST的新手,所以对我来说,需要注意一些事情:
XXX不是UI上显示的实际文本,您需要检查源代码以查看窗口/对话框的名称:
看起来像这样setName("actual name of window");
或任何摆动元素private javax.swing.JButton button1;