use of org.fest.swing.fixture.JComboBoxFixture in project android by JetBrains.
the class BuildTypesTabFixture method setDebuggable.
@NotNull
public BuildTypesTabFixture setDebuggable(@NotNull String debuggable) {
JComboBox comboBox = robot().finder().findByLabel(target(), "Debuggable", JComboBox.class, true);
new JComboBoxFixture(robot(), comboBox).selectItem(debuggable);
return this;
}
use of org.fest.swing.fixture.JComboBoxFixture in project android by JetBrains.
the class CreateFileFromTemplateDialogFixture method selectKind.
@NotNull
public CreateFileFromTemplateDialogFixture selectKind(@NotNull final Kind kind) {
JComboBoxFixture kindFixture = new JComboBoxFixture(robot(), robot().finder().findByType(target(), JComboBox.class));
kindFixture.selectItem(kind.getTemplateName());
return this;
}
Aggregations