use of org.fest.swing.fixture.JTextComponentFixture in project android by JetBrains.
the class BuildSignedApkDialogCreateKeystoreSubDialogFixture method keyPasswordConfirm.
@NotNull
public BuildSignedApkDialogCreateKeystoreSubDialogFixture keyPasswordConfirm(@NotNull String password) {
JPasswordField passwordField = robot().finder().findByName("myConfirmKeyPasswordField", JPasswordField.class);
new JTextComponentFixture(robot(), passwordField).enterText(password);
return this;
}
use of org.fest.swing.fixture.JTextComponentFixture in project android by JetBrains.
the class BuildSignedApkDialogCreateKeystoreSubDialogFixture method keyPassword.
@NotNull
public BuildSignedApkDialogCreateKeystoreSubDialogFixture keyPassword(@NotNull String password) {
JPasswordField passwordField = robot().finder().findByName("myKeyPasswordField", JPasswordField.class);
new JTextComponentFixture(robot(), passwordField).enterText(password);
return this;
}
use of org.fest.swing.fixture.JTextComponentFixture in project android by JetBrains.
the class BuildSignedApkDialogCreateKeystoreSubDialogFixture method stateOrProvince.
@NotNull
public BuildSignedApkDialogCreateKeystoreSubDialogFixture stateOrProvince(@NotNull String state) {
JTextField stateComponent = robot().finder().findByLabel("State or Province:", JTextField.class);
new JTextComponentFixture(robot(), stateComponent).enterText(state);
return this;
}
use of org.fest.swing.fixture.JTextComponentFixture in project android by JetBrains.
the class BuildSignedApkDialogCreateKeystoreSubDialogFixture method password.
@NotNull
public BuildSignedApkDialogCreateKeystoreSubDialogFixture password(@NotNull String password) {
JPasswordField passwordField = robot().finder().findByName("myPasswordField", JPasswordField.class);
new JTextComponentFixture(robot(), passwordField).enterText(password);
return this;
}
use of org.fest.swing.fixture.JTextComponentFixture in project android by JetBrains.
the class BuildSignedApkDialogCreateKeystoreSubDialogFixture method cityOrLocality.
@NotNull
public BuildSignedApkDialogCreateKeystoreSubDialogFixture cityOrLocality(@NotNull String city) {
JTextField cityComponent = robot().finder().findByLabel("City or Locality:", JTextField.class);
new JTextComponentFixture(robot(), cityComponent).enterText(city);
return this;
}
Aggregations