使用 WindowFinder 查找模式对话框



我正在使用 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);

其中机器人 =

  1. BasicRobot.robotWithCurrentAwtHierarchy();
  2. BasicRobot.robotWithNewAwtHierarchy();
  3. frameFixture.robot (frameFixture => JFrame)

我还尝试指定机器人的查找范围:

robot.settings().componentLookupScope(ComponentLookupScope.ALL);

网上有很多FEST的例子可以打电话给robot()但我找不到这个机器人功能应该如何或是什么。

为什么我找不到新创建的弹出对话框?

尝试添加查找时间:

WindowFinder.findDialog(MyDialog.class).withTimeout(10000).using(robot);

更多信息: http://fest.googlecode.com/svn-history/r458/trunk/fest/fest-swing/javadocs/org/fest/swing/fixture/util/WindowFinder.html

最近,我也在使用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;

相关内容

  • 没有找到相关文章