org.xwiki.test.ui.XWikiWebDriver.findElementsWithoutWaiting()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(7.2k)|赞(0)|评价(0)|浏览(88)

本文整理了Java中org.xwiki.test.ui.XWikiWebDriver.findElementsWithoutWaiting()方法的一些代码示例,展示了XWikiWebDriver.findElementsWithoutWaiting()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XWikiWebDriver.findElementsWithoutWaiting()方法的具体详情如下:
包路径:org.xwiki.test.ui.XWikiWebDriver
类名称:XWikiWebDriver
方法名:findElementsWithoutWaiting

XWikiWebDriver.findElementsWithoutWaiting介绍

暂无

代码示例

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

/**
 * @return the list of properties that have been modified
 */
public List<String> getPropertyNames()
{
  List<String> propertyNames = new ArrayList<>();
  for (WebElement element : getDriver().findElementsWithoutWaiting(this.container, By.className("diff-header"))) {
    propertyNames.add(element.getText().trim());
  }
  return propertyNames;
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

/**
 * @return list of suggestion elements found in the suggestion panel
 */
public List<SuggestionElement> getSelectedSuggestions()
{
  return getDriver().findElementsWithoutWaiting(this.container, By.className("xwiki-selectize-option")).stream()
    .map(SuggestionElement::new).collect(Collectors.toList());
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-administration-test-pageobjects

public List<String> getValue()
{
  List<String> values = new ArrayList<>();
  for (WebElement path : getDriver()
    .findElementsWithoutWaiting(By.cssSelector(".path input[name='" + this.name + "'][value]"))) {
    values.add(path.getText());
  }
  return values;
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

public List<String> getItems()
{
  List<WebElement> items =
    getDriver().findElementsWithoutWaiting(this.container, By.xpath(".//div[@class = 'diff-summary-item']/a"));
  List<String> labels = new ArrayList<>();
  for (WebElement item : items) {
    labels.add(item.getText());
  }
  return labels;
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-administration-test-pageobjects

public boolean canDeleteGroup(String groupName)
{
  return !getDriver()
    .findElementsWithoutWaiting(By.xpath(String.format(GROUP_ACTION_XPATH_FORMAT, groupName, "delete")))
    .isEmpty();
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

/**
 * @return true if the choice between terminal or non-terminal document is displayed, false otherwise.
 * @since 7.2M3
 */
public boolean isTerminalOptionDisplayed()
{
  List<WebElement> elements = getDriver().findElementsWithoutWaiting(By.id("terminal"));
  return elements.size() > 0 && elements.get(0).isDisplayed();
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

public int getCommentID(String content)
{
  this.commentsList = getDriver().findElementsWithoutWaiting(By.className("xwikicomment"));
  for (int i = 0; i < this.commentsList.size(); i++) {
    if (this.commentsList.get(i).findElement(By.className("commentcontent")).getText().equals(content)) {
      return Integer
        .parseInt(this.commentsList.get(i).getAttribute("id").substring("xwikicomment_".length()));
    }
  }
  return -1;
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-administration-test-pageobjects

public boolean canDeleteUser(String userName)
{
  return !getDriver()
    .findElementsWithoutWaiting(By.xpath(String.format(USER_ACTION_XPATH_FORMAT, userName, "delete")))
    .isEmpty();
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

public boolean hasColumn(String columnTitle)
{
  List<WebElement> elements = getDriver().findElementsWithoutWaiting(
    By.xpath("//th[contains(@class, 'xwiki-livetable-display-header-text') and normalize-space(.) = '"
      + columnTitle + "']"));
  return elements.size() > 0;
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-administration-test-pageobjects

public boolean hasNotSectionWithName(String categoryName, String sectionName)
  {
    return getDriver().findElementsWithoutWaiting(this.container, sectionByName(categoryName, sectionName))
      .size() == 0;
  }
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

/**
 * @return {@code true} if the date picker allows you to select the hour, {@code false} otherwise
 */
public boolean hasHourSelector()
{
  return getDriver().findElementsWithoutWaiting(container, By.className("hour")).size() > 0;
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

/**
 * @param id the comment id
 * @return true if the comment has the edit button
 * @since 3.2M3
 */
public boolean hasEditButtonForCommentByID(int id)
{
  return !getDriver().findElementsWithoutWaiting(By.cssSelector("#xwikicomment_" + id + " a.edit")).isEmpty();
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

/** @return Is the specified message included in the list of validation failure messages. */
public boolean validationFailureMessagesInclude(String message)
{
  return getDriver().findElementsWithoutWaiting(
    By.xpath("//dd/span[@class='LV_validation_message LV_invalid' and . = '" + message + "']")).size() > 0;
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

public boolean isLiveValidationEnabled()
  {
    return !getDriver().findElementsWithoutWaiting(this.registerFormElement, By.xpath("./script")).isEmpty();
  }
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

/**
 * @return {@code true} if the "No changes" message is displayed and there are no diffs displayed, {@code false}
 *         otherwise
 */
public boolean hasNoChanges()
{
  return getDriver().findElementsWithoutWaiting(container,
    By.xpath("div[@class = 'infomessage' and . = 'No changes']")).size() > 0
    && getChangedEntities().isEmpty();
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-administration-test-pageobjects

@Override
  public boolean validationFailureMessagesInclude(String message)
  {
    // Check both the live validation errors and the server side errors.
    By serverSideErrorMessage =
      By.xpath(String.format("//div[contains(@class,'xnotification-error') and contains(., '%s')]", message));
    return super.validationFailureMessagesInclude(message)
      || getDriver().findElementsWithoutWaiting(serverSideErrorMessage).size() > 0;
  }
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

/** @return a list of WebElements representing validation failure messages. Use after calling register() */
public List<WebElement> getValidationFailureMessages()
{
  return getDriver().findElementsWithoutWaiting(By.xpath("//dd/span[@class='LV_validation_message LV_invalid']"));
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

/**
 * @return a list of the locales already translated for this document
 * @since 9.0RC1
 */
public List<Locale> getExistingLocales()
{
  List<WebElement> elements =
    getDriver().findElementsWithoutWaiting(By.xpath("//p[starts-with(text(), 'Existing translations:')]//a"));
  return getExistingLocales(elements);
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-test-ui

/**
 * @return a list of the supported locales not yet translated for this document
 * @since 9.0RC1
 */
public List<Locale> getNotExistingLocales()
{
  List<WebElement> elements =
    getDriver().findElementsWithoutWaiting(By.xpath("//p[starts-with(text(), 'Translate this page in:')]//a"));
  return getExistingLocales(elements);
}

代码示例来源:origin: org.xwiki.platform/xwiki-platform-flamingo-theme-test-pageobjects

public boolean hasError()
  {
    try {
      getDriver().switchTo().frame("iframe");
      List<WebElement> errors = getDriver().findElementsWithoutWaiting(By.className("less-error-message"));
      return !errors.isEmpty();
    } finally {
      getDriver().switchTo().defaultContent();
    }
  }
}

相关文章