1

我想在List<WebElements>文本中找到 WebElement。我的方法有这样的论点:List<WebElement> webElements, String text. 对于匹配文本,我更喜欢使用javaslang库。所以,我们有什么:

protected WebElement findElementByText(List<WebElement> webelements, String text) {

}

使用 javaslang 我写了这样简单的匹配:

Match(webElement.getText()).of(
     Case(text, webElement),
          Case($(), () -> {
               throw nw IllegalArgumentException(webElement.getText() + " does not match " + text);
          })
);

我不明白如何以良好的方式编写循环以在List<WebElemnt>文本中查找 WebElement。谢谢你们的帮助。

4

2 回答 2

3

我建议这样做:

// using javaslang.collection.List
protected WebElement findElementByText(List<WebElement> webElements, String text) {
    return webElements
            .find(webElement -> Objects.equals(webElement.getText(), text))
            .getOrElseThrow(() -> new NoSuchElementException("No WebElement found containing " + text));
}

// using java.util.List
protected WebElement findElementByText(java.util.List<WebElement> webElements, String text) {
    return webElements
            .stream()
            .filter(webElement -> Objects.equals(webElement.getText(), text))
            .findFirst()
            .orElseThrow(() -> new NoSuchElementException("No WebElement found containing " + text));
}

免责声明:我是 Javaslang 的创建者

于 2017-03-21T18:44:24.177 回答
1

可能您只需要一个简单的 foreach 循环:

for(WebElement element : webElements){
    //here is all your matching magic
}
于 2017-03-21T14:59:26.750 回答