combobox/choicebox 上特定文本的 TestFX clickOn()
TestFX clickOn() on particular text on combobox/choicebox
我是使用 fxrobot (javafx) 进行 TestFX GUI 测试的新手。
我当前的任务是在使用组合框创建的下拉菜单上单击一个选项。我没有找到任何提到这个问题的教程。
是否真的可以实现在 combobox/drop 下拉菜单中选择文本的 clickOn() 方法?有没有例子如何做?
万分感谢!
这是用户在给定组合框中选择给定文本的方式示例。
void user_selects_combo_item(String comboBoxId, String itemToSelect) {
ComboBox<?> actualComboBox = lookupControl(comboBoxId);
// Find and click only on arrow button. This is important for editable combo-boxes.
for (Node child : actualComboBox.getChildrenUnmodifiable()) {
if (child.getStyleClass().contains("arrow-button")) {
Node arrowRegion = ((Pane) child).getChildren().get(0);
robot.clickOn(arrowRegion);
Thread.sleep(100); // try/catch were skipped for shorter code.
robot.clickOn(itemToSelect);
}
}
Assert.fail("Couldn't find an arrow-button.");
}
private <T extends Node> T lookupControl(String controlId) {
T actualControl = robot.lookup(controlId).query();
assertNotNull("Could not find a control by id = " + controlId, actualControl);
return actualControl;
}
我是使用 fxrobot (javafx) 进行 TestFX GUI 测试的新手。
我当前的任务是在使用组合框创建的下拉菜单上单击一个选项。我没有找到任何提到这个问题的教程。
是否真的可以实现在 combobox/drop 下拉菜单中选择文本的 clickOn() 方法?有没有例子如何做?
万分感谢!
这是用户在给定组合框中选择给定文本的方式示例。
void user_selects_combo_item(String comboBoxId, String itemToSelect) {
ComboBox<?> actualComboBox = lookupControl(comboBoxId);
// Find and click only on arrow button. This is important for editable combo-boxes.
for (Node child : actualComboBox.getChildrenUnmodifiable()) {
if (child.getStyleClass().contains("arrow-button")) {
Node arrowRegion = ((Pane) child).getChildren().get(0);
robot.clickOn(arrowRegion);
Thread.sleep(100); // try/catch were skipped for shorter code.
robot.clickOn(itemToSelect);
}
}
Assert.fail("Couldn't find an arrow-button.");
}
private <T extends Node> T lookupControl(String controlId) {
T actualControl = robot.lookup(controlId).query();
assertNotNull("Could not find a control by id = " + controlId, actualControl);
return actualControl;
}