use of org.fest.swing.fixture.JTextComponentFixture in project android by JetBrains.
the class BuildSignedApkDialogCreateKeystoreSubDialogFixture method organizationalUnit.
@NotNull
public BuildSignedApkDialogCreateKeystoreSubDialogFixture organizationalUnit(@NotNull String ou) {
JTextField ouComponent = robot().finder().findByLabel("Organizational Unit:", JTextField.class);
new JTextComponentFixture(robot(), ouComponent).enterText(ou);
return this;
}
use of org.fest.swing.fixture.JTextComponentFixture in project android by JetBrains.
the class BuildSignedApkDialogCreateKeystoreSubDialogFixture method keyStorePath.
@NotNull
public BuildSignedApkDialogCreateKeystoreSubDialogFixture keyStorePath(@NotNull String path) {
JTextField textField = ((TextFieldWithBrowseButton) robot().finder().findByLabel(target(), "Key store path:")).getTextField();
new JTextComponentFixture(robot(), textField).enterText(path);
return this;
}
Aggregations