congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
PageElement.getValue
Code IndexAdd Tabnine to your IDE (free)

How to use
getValue
method
in
com.atlassian.pageobjects.elements.PageElement

Best Java code snippets using com.atlassian.pageobjects.elements.PageElement.getValue (Showing top 20 results out of 315)

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

/**
 * @return the new parent page set in the advanced tab
 */
public String getNewParentPage() {
  return newParentPageInput.getValue();
}
origin: com.atlassian.jira/jira-ondemand-haup-pageobjects

/**
 * Returns the value of the search text.
 * 
 * @return search text
 */
public String getSearchText()
{
  return userQueryInput.getValue();
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

  public String getPrefixValue()
  {
    return inputPrefix.getValue();
  }
}
origin: com.atlassian.jira.plugins/jira-dvcs-connector-pageobjects

/**
 * @return OAuth secret of this dialog.
 */
public String getSecret() {
  return secretField.getValue();
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public String getIconUrl()
{
  return iconUrlElement.getValue();
}

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

  @Override
  public boolean apply(PageElement input)
  {
    return value.equals(input.getValue());
  }
};
origin: com.atlassian.jira/atlassian-jira-pageobjects

public Long getSchemeId()
{
  if (schemeIdElement.isPresent())
  {
    return Long.valueOf(schemeIdElement.getValue());
  }
  else
  {
    return null;
  }
}
origin: com.atlassian.confluence/confluence-webdriver-pageobjects

/**
 * @return The value of the address field in the web link panel
 * @since 5.8.0
 */
public String getAddressField() {
  return find("#weblink-destination").getValue();
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public Boolean isDraftMigration()
{
  if (draftMigration.isPresent())
  {
    return Boolean.valueOf(draftMigration.getValue());
  }
  else
  {
    return null;
  }
}
origin: com.atlassian.jira/jira-ondemand-haup-pageobjects

  public SupportedApplication apply(PageElement element)
  {
    return SupportedApplication.valueOf(element.getValue());
  }
}));
origin: com.atlassian.jira/atlassian-jira-pageobjects

public Long getProjectId()
{
  if (projectIdElement.isPresent())
  {
    return Long.valueOf(projectIdElement.getValue());
  }
  else
  {
    return null;
  }
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public Long getProjectId()
{
  if (projectIdElement.isPresent())
  {
    return Long.valueOf(projectIdElement.getValue());
  }
  else
  {
    return null;
  }
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public AddUserPage setSelectedApplications(final String... appKeys)
{
  final ImmutableSet<String> appKeySet = Arrays.stream(appKeys).collect(CollectorsUtil.toImmutableSet());
  createForm.findAll(SELECTOR_APPS)
      .forEach(element -> setCheckbox(element, appKeySet.contains(element.getValue())));
  return this;
}
origin: com.atlassian.jira.plugins/jira-dvcs-connector-pageobjects

public List<RepoNameId> getUnSyncedRepos() {
  return rootElement.findAll(By.cssSelector("select option"))
      .stream()
      .map(option -> new RepoNameId(option.getText(), Integer.parseInt(option.getValue())))
      .collect(toList());
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

/**
 * @return Name of permission, which will be added.
 */
public String getPermissionName()
{
  return permissionsSelect.find(By.xpath("option[@value = '" + permissionsSelect.getValue() + "']")).getText();
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public IssuePickerPopup triggerSearchModeFilter(CharSequence filterOption)
{
  triggerSearchModeFilter();
  for (PageElement option : elementFinder.find(By.id("searchRequestId")).findAll(By.tagName("option")))
  {
    if (option.getValue().contains(filterOption))
    {
      option.click();
    }
  }
  return this;
}
origin: com.atlassian.confluence/confluence-webdriver-pageobjects

public UserPickerPopup select(User user) {
  List<PageElement> all = searchResults.findAll(By.name("userSelect"));
  for (PageElement el : all) {
    if (user.getUsername().equals(el.getValue()))
      el.click();
  }
  return this;
}
origin: com.atlassian.confluence/confluence-webdriver-pageobjects

public GroupPickerPopup select(Group group) {
  List<PageElement> all = searchResults.findAll(By.name("group"));
  for (PageElement el : all) {
    if (group.getName().equals(el.getValue()))
      el.click();
  }
  return this;
}
origin: com.atlassian.confluence/confluence-webdriver-pageobjects

private void typeInLabelsInput(String label) {
  waitUntilTrue("Labels input field should be visible", labelsInput.timed().isVisible());
  labelsInput.click().clear().type(label);
  if (!label.equals(labelsInput.getValue())) {
    labelsInput.click().clear().type(label);
  }
  waitUntilTrue("Labels input field should have new label", labelsInput.timed().hasValue(label));
}
origin: com.atlassian.applinks/applinks-pageobjects

public void select(UiOAuthConfig config) {
  waitUntilTrue(isDropdownVisible());
  while (!getInputText().getValue().equals("")) {
    getInputText().type(Keys.BACK_SPACE);
  }
  getInputText().type(config.typingText());
  getInputText().type(Keys.RETURN);
  waitUntilTrue(isSelected(config));
}
com.atlassian.pageobjects.elementsPageElementgetValue

Popular methods of PageElement

  • timed
  • click
  • getAttribute
  • find
  • getText
  • isPresent
  • javascript
  • type
  • isVisible
  • clear
  • findAll
  • isSelected
  • findAll,
  • isSelected,
  • select,
  • withTimeout,
  • hasAttribute,
  • hasClass,
  • getSize,
  • getTagName,
  • isEnabled

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • requestLocationUpdates (LocationManager)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Permission (java.security)
    Legacy security code; do not use.
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top 25 Plugins for Webstorm
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