2

我正在尝试编写 Fest Swing 测试,但无法制作/找到框架夹具。我有两个 JFrame,一个在点击时打开另一个,我想:

1.) 找到打开的新 JFrame 的框架夹具

2.)从创建的新 JFrame 对象中制作一个新的框架夹具(我可以从原始 JFrame 对象中获取对象。)

我试过使用

    GenericTypeMatcher<secondGUI> matcher = new GenericTypeMatcher<secondGUI>(secondGUI.class) {
        protected boolean isMatching(secondGUI frame) {
            System.out.println("0".equals(frame.getTitle()) && frame.isShowing());
            return "0".equals(frame.getTitle()) && frame.isShowing();
        }
    };
    Robot robot = BasicRobot.robotWithCurrentAwtHierarchy();

找到框架,但遇到 EdtViolationException。

我也试过

    secondGUI secGUI = GuiActionRunner.execute(new GuiQuery<secondGUI>() {
        @Override
        protected secondGUI executeInEDT() throws Throwable {
            return firstGUI.getController().getWindows().get("0");
        }
    });
    FrameFixture secondWindow = new FrameFixture(secGUI);

但最后一行也给出了 EdtViolationException。有什么建议么?谢谢!

4

1 回答 1

1

尝试使用框架的标题找到你的框架:

Robot robot = BasicRobot.robotWithCurrentAwtHierarchy();
FrameFixture frame = WindowFinder.findFrame("Title of my frame").using(robot);

另外,secondGUI应该是SecondGUI因为它是一个类名。

顺便说一句,很高兴看到另一个 FEST 用户。

于 2012-05-16T20:48:52.453 回答