什么是JavaFX Alert OK按钮的fx:id?

时间:2017-11-13 08:48:48

标签: java javafx testfx

我使用TestFX框架来测试我的javaFX应用程序。 我测试我的应用程序:

@Test
public void shouldClickOnDeletMarkerButton() {
    FxRobot bot = new FxRobot();
    bot.robotContext();
    bot.clickOn("#deleteMarkerButton");
    bot.clickOn("javafx.scene.control.Alert.CANCEL_BUTTON"); //This doesn't work.
}

我希望他点击JavaFX Alert Dialogs的确定按钮,但我没有找到fx:id。

什么是JavaFX Alert OK按钮的fx:id?

编辑:我解决了我的问题,FxRobot知道"阅读",这就足够了:

@Test
public void shouldClickOnDeletMarkerButtonWhenAnyMarkerAsBeenCreated() {
    bot.robotContext();
    bot.clickOn("#deleteMarkerButton");
    bot.clickOn("OK"); //Target text / Target Button / ...
}

2 个答案:

答案 0 :(得分:1)

<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>

<BorderPane fx:controller="sample.Controller" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
   <Button text="Click me!" fx:id="button" onAction="#clickAction" BorderPane.alignment="CENTER"/>
</BorderPane>

为元素分配fx:id值,如Button控件的代码所示,在文档的命名空间中创建一个变量,您可以从代码中的其他位置引用该变量。

答案 1 :(得分:0)

@KaluNight,你的解决方案还可以,但仅适用于英语本地化。

更好地使用ID。确实Alert没有为自己的按钮定义fx:id,但我们可以这样做:

Button okButton = (Button) alert.getDialogPane().lookupButton(ButtonType.OK);
okButton.setId("my custom id");