Tabnine Logo
CheckboxElement.uncheck
Code IndexAdd Tabnine to your IDE (free)

How to use
uncheck
method
in
com.atlassian.pageobjects.elements.CheckboxElement

Best Java code snippets using com.atlassian.pageobjects.elements.CheckboxElement.uncheck (Showing top 15 results out of 315)

origin: com.atlassian.confluence/confluence-webdriver-pageobjects

  public HowTo uncheckDontShow() {
    dontShow.uncheck();
    return this;
  }
}
origin: com.atlassian.applinks/applinks-pageobjects

/**
 * @since 4.0.15
 */
public OauthOutgoingAuthenticationWithAutoConfigSection uncheckOutgoing2LOi() {
  outgoingTwoLoiEnableCheckBox.uncheck();
  return this;
}
origin: com.atlassian.applinks/applinks-pageobjects

public OauthIncomingAuthenticationWithAutoConfigSection uncheck2LO() {
  twoLOEnabledCheckbox.uncheck();
  return this;
}
origin: com.atlassian.applinks/applinks-pageobjects

public OauthOutgoingAuthenticationWithAutoConfigSection uncheckOutgoing2LO() {
  outgoingTwoLoEnableCheckBox.uncheck();
  return this;
}
origin: com.atlassian.applinks/applinks-pageobjects

public OauthIncomingAuthenticationWithAutoConfigSection uncheck2LOImpersonation() {
  twoLOImpersonationEnabledCheckbox.uncheck();
  return this;
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public MailSetupPage setTlsRequired(boolean required)
{
  if (required)
  {
    tlsRequired.check();
  }
  else
  {
    tlsRequired.uncheck();
  }
  return this;
}
origin: com.atlassian.applinks/applinks-pageobjects

public OauthIncomingAuthenticationSection setTwoLOImpersonationAllowed(boolean twoLOImpersonationAllowed) {
  if (twoLOImpersonationAllowed) {
    twoLOImpersonationAllowedField.check();
  } else {
    twoLOImpersonationAllowedField.uncheck();
  }
  return this;
}
origin: com.atlassian.support/stp-page-objects

public void setEnable(boolean isEnabled)
{
  if (isEnabled)
  {
    enabled.check();
  }
  else
  {
    enabled.uncheck();
  }
}
origin: com.atlassian.applinks/applinks-pageobjects

public OauthIncomingAuthenticationSection setTwoLOAllowed(boolean twoLOAllowed) {
  if (twoLOAllowed) {
    twoLOAllowedField.check();
  } else {
    twoLOAllowedField.uncheck();
  }
  return this;
}
origin: com.atlassian.support/stp-page-objects

public void uncheckAllSections() {
  for (CheckboxElement checkbox : body.findAll(By.cssSelector("#support-zip input[type=checkbox]"), CheckboxElement.class)) {
    checkbox.uncheck();
  }
}
origin: com.atlassian.jira/jira-ondemand-haup-pageobjects

/**
 * Revokes the user's access to the application, and expects a warning message dialog pops up.
 * Changes will not be applied until {@link #applyChanges()} is called.
 *
 * @param username name of user to grant access to applications
 * @param application application to revoke the user's access from
 * @return RevokeAccessWarningMessageDialog
 */
public RevokeAccessWarningMessageDialog revokeAccessExpectingWarningMessage(final String username, final SupportedApplication application)
{
  CheckboxElement checkbox = getUserApplicationAccessCheckbox(username, application);
  checkbox.uncheck();
  return pageBinder.bind(RevokeAccessWarningMessageDialog.class);
}
origin: com.atlassian.jira/jira-ondemand-haup-pageobjects

/**
 * Revoke all users shown on the page to have access to the specified application, and expect a warning message
 * dialog pops up. Changes will not be applied until {@link #applyChanges()} is called.
 * It proceeds by unticking the master checkbox.
 * The master must be ticked before the call
 *
 * @param application application to grant to all users on the page
 * @return RevokeAccessWarningMessageDialog
 * @throws IllegalStateException if the master checkbox isn't ticked
 */
public RevokeAccessWarningMessageDialog revokeAllExpectingWarningMessage(final SupportedApplication application)
{
  String checkboxName = String.format("%s-masterCheckbox", application.name());
  CheckboxElement checkbox = table.find(By.id(checkboxName), CheckboxElement.class);
  if (!checkbox.isSelected())
  {
    throw new IllegalStateException("The master checkbox must be ticked before calling revokeAll");
  }
  checkbox.uncheck();
  return pageBinder.bind(RevokeAccessWarningMessageDialog.class);
}
origin: com.atlassian.applinks/applinks-pageobjects

public <T> T configureOneWayLink(Class<T> nextPageClass) {
  Poller.waitUntilTrue(reciprocalLinkCheckbox.timed().isVisible());
  reciprocalLinkCheckbox.uncheck();
  return clickNext(nextPageClass);
}
origin: com.atlassian.support/stp-page-objects

public void uncheckAllSections() {
  clickCustomizeButton();
  for (CheckboxElement checkbox : body.findAll(By.cssSelector("#support-zip-modal input[type=checkbox]"), CheckboxElement.class)) {
    checkbox.javascript().execute("arguments[0].scrollIntoView()");
    checkbox.uncheck();
  }
}
origin: com.atlassian.applinks/applinks-pageobjects

public ListApplicationLinkPage configureOneWayLinkAsAdmin() {
  Poller.waitUntilTrue(reciprocalLinkCheckbox.timed().isVisible());
  reciprocalLinkCheckbox.uncheck();
  FindUtils.findVisibleBy(By.cssSelector("#add-application-link-dialog .wizard-submit"), elementFinder).click();
  return pageBinder.bind(ListApplicationLinkPage.class);
}
com.atlassian.pageobjects.elementsCheckboxElementuncheck

Popular methods of CheckboxElement

  • check
  • isSelected
  • timed
  • getAttribute
  • getText
  • isEnabled
  • isPresent
  • isVisible
  • javascript

Popular in Java

  • Start an intent from android
  • runOnUiThread (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • getExternalFilesDir (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • JOptionPane (javax.swing)
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now