Tabnine Logo
PageElement.clear
Code IndexAdd Tabnine to your IDE (free)

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

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

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

public LegacyPicker clearQuery()
{
  this.field.clear();
  return this;
}
origin: com.atlassian.confluence/confluence-webdriver-pageobjects

/**
 * Clear the search field. Does *not* wait until the search results are reset, since we don't refresh the results
 * if the search string is too short.
 */
public SpaceDirectoryPage clearSearchBox() {
  searchField.clear();
  return this;
}
origin: com.atlassian.confluence/confluence-webdriver-pageobjects

public void setDraftSaveIntervalSeconds(final String interval) {
  draftSaveIntervalMinutes.clear();
  draftSaveIntervalSeconds.clear();
  draftSaveIntervalSeconds.type(interval);
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public EditUserDetailsPage fillUserFullName(final String newUserFullName)
{
  currentUserFullName.clear().type(newUserFullName);
  return this;
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public IPOAssigneeActionPage setNewSydneyAssignee(String newAssignee)
{
  sydneyUser.clear().type(newAssignee);
  return this;
}

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

public WebLinkSection linkText(String linkText)
{
  this.linkText.clear().type(linkText);
  return this;
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public WebLinkSection comment(String comment)
{
  this.comment.clear().type(comment);
  return this;
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public ConfigureFieldDialog description(String description)
{
  descriptionElement.clear().type(description);
  return this;
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public EditUserPasswordPage fillPasswordFields(String newPassword)
{
  password.clear().type(newPassword);
  confirm.clear().type(newPassword);
  return this;
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public SignupPage fillFullName(final String fullName)
{
  fullNameField.clear().type(fullName);
  return this;
}
origin: com.atlassian.confluence/confluence-webdriver-pageobjects

public EditAttachmentPage setNewParentPageId(String newParentPageInput) {
  this.newParentPageInput.clear();
  this.newParentPageInput.type(newParentPageInput);
  return this;
}
origin: com.atlassian.confluence/confluence-webdriver-pageobjects

public BlueprintAddSpaceForm setKey(String key) {
  spaceKey.clear();
  spaceKey.type(key);
  return this;
}
origin: com.atlassian.confluence/confluence-webdriver-pageobjects

/**
 * Sets a value for this text field by typing it.
 */
public void setValue(String value) {
  field.clear();
  field.type(value);
}
origin: com.atlassian.applinks/applinks-pageobjects

public OauthOutgoingAuthenticationEditModeSection setConsumerKey(String consumerKey) {
  consumerKeyTextBox.clear();
  consumerKeyTextBox.type(consumerKey);
  return this;
}
origin: com.atlassian.applinks/applinks-pageobjects

public OauthIncomingAuthenticationSection setConsumerCallbackUrl(String consumerCallbackUrl) {
  consumerCallbackUrlField.clear();
  consumerCallbackUrlField.type(consumerCallbackUrl);
  return this;
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

public AddUserPage addUser(final String username, final String password, final String fullName, final String email,
    final boolean receiveEmail)
{
  this.username.clear().type(username);
  this.password.clear().type(password);
  this.fullName.clear().type(fullName);
  this.email.clear().type(email);
  return setCheckbox(sendEmail, receiveEmail);
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

private JiraWebSudo submitPassword(String password)
{
  passwordElement.clear();
  if (StringUtils.isNotBlank(password))
  {
    passwordElement.type(password);
  }
  submit(submitElement);
  return this;
}
origin: com.atlassian.jira/atlassian-jira-pageobjects

  public void submitIconUrl(String url)
  {
    iconInput.clear();
    if (StringUtils.isNotBlank(url))
    {
      iconInput.type(url);
    }
    updateButton.click();
    driver.switchTo().window(origHandle);
  }
}
origin: com.atlassian.applinks/applinks-pageobjects

  public AddEntityLinkSectionNonUal setName(String name) {
    Poller.waitUntilTrue(nameField.timed().isVisible());
    nameField.clear();
    nameField.type(name);
    return this;
  }
}
origin: com.atlassian.confluence/confluence-webdriver-pageobjects

/**
 * Filter the results on the currently selected dashboard view with the given string
 *
 * @param filterString the filter string
 */
public void filterResults(final String filterString) {
  filterField.clear();
  filterField.type(filterString);
  waiter.until().element(By.cssSelector(DASHBOARD_CONTAINER_CSS + ".list-container[data-filter-string=\"" + filterString + "\"]")).exists().execute();
}
com.atlassian.pageobjects.elementsPageElementclear

Popular methods of PageElement

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

Popular in Java

  • Finding current android device location
  • getSupportFragmentManager (FragmentActivity)
  • getExternalFilesDir (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Top Vim 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