congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
CheckboxElement.check
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: com.atlassian.jira/jira-ondemand-haup-pageobjects

public RevokeAccessWarningMessageDialog dontShowAgain()
{
  dontShowAgain.check();
  return this;
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public BulkEdit selectAllIssues()
{
  all.check();
  return this;
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public LinkJiraSection createReciprocal()
{
  createReciprocalCheckbox.check();
  return this;
}
origin: com.atlassian.applinks/applinks-pageobjects

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

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

public OauthIncomingAuthenticationWithAutoConfigSection check2LOImpersonation() {
  twoLOImpersonationEnabledCheckbox.check();
  return this;
}
origin: com.atlassian.confluence/confluence-webdriver-pageobjects

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

public OauthOutgoingAuthenticationWithAutoConfigSection checkOutgoing2LO() {
  outgoingTwoLoEnableCheckBox.check();
  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 setTwoLOAllowed(boolean twoLOAllowed) {
  if (twoLOAllowed) {
    twoLOAllowedField.check();
  } else {
    twoLOAllowedField.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.jira/jira-ondemand-haup-pageobjects

/**
 * Grants the user access to the application. Changes will not be applied until {@link #applyChanges()} is called.
 * 
 * @param username name of user to grant access to applications
 * @param application application to grant the user access to
 * @return ApplicationAccessPage
 */
public ApplicationAccessPage grantAccess(final String username, final SupportedApplication application)
{
  CheckboxElement checkbox = getUserApplicationAccessCheckbox(username, application);
  checkbox.check();
  return this;
}
origin: com.atlassian.jira/jira-ondemand-haup-pageobjects

/**
 * Grants all users shown on the page to have access to the specified application. Changes will not be applied until {@link #applyChanges()} is called.
 * It proceeds by ticking the master checkbox.
 * 
 * @param application application to grant to all users on the page
 * @return ApplicationAccessPage
 */
public ApplicationAccessPage grantAll(final SupportedApplication application)
{
  String checkboxName = String.format("%s-masterCheckbox", application.name());
  CheckboxElement checkbox = table.find(By.id(checkboxName), CheckboxElement.class);
  checkbox.check();
  return this;
}
origin: com.atlassian.support/stp-page-objects

public void checkModalApplicationProperties() {
  clickCustomizeButton();
  CheckboxElement checkbox = body.find(By.cssSelector("#modal-application-properties"), CheckboxElement.class);
  checkbox.check();
}
origin: com.atlassian.applinks/applinks-pageobjects

private void enterLinkParameters(String remoteApplicationUsername, String remoteApplicationPassword, String reciprocalRpcUrl) {
  Poller.waitUntilTrue(reciprocalRpcUrlTextBox.timed().isVisible());
  reciprocalLinkCheckbox.check();
  reciprocalLinkUsernameTextBox.clear();
  reciprocalLinkUsernameTextBox.type(remoteApplicationUsername);
  reciprocalLinkPasswordTextBox.clear();
  reciprocalLinkPasswordTextBox.type(remoteApplicationPassword);
  if (reciprocalRpcUrl != null) {
    reciprocalRpcUrlTextBox.clear();
    reciprocalRpcUrlTextBox.type(reciprocalRpcUrl);
  }
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

/**
 * Selects the row. Depending on the mode it will either select this single row and close the popup
 * (single mode), or just check the checkbox associated with this row (multi-mode).
 *
 */
public void select()
{
  if (owner.isMultiselect())
  {
    getSelect().check();
  }
  else
  {
    // click first available td
    extendedFinder.within(rowElement).find(By.tagName("td"), isVisible()).click();
    owner.switchBack();
  }
}
com.atlassian.pageobjects.elementsCheckboxElementcheck

Popular methods of CheckboxElement

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

Popular in Java

  • Start an intent from android
  • getContentResolver (Context)
  • requestLocationUpdates (LocationManager)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Runner (org.openjdk.jmh.runner)
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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