io.appium.java_client.pagefactory.bys.builder.ByAll Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client for Appium Mobile Webdriver
package io.appium.java_client.pagefactory.bys.builder;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import org.openqa.selenium.By;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.SearchContext;
import org.openqa.selenium.WebElement;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import java.util.function.Function;
public class ByAll extends org.openqa.selenium.support.pagefactory.ByAll {
private final List bys;
private Function> getSearchingFunction(By by) {
return input -> {
try {
return Optional.of(input.findElement(by));
} catch (NoSuchElementException e) {
return Optional.empty();
}
};
}
/**
* @param bys is a set of {@link org.openqa.selenium.By} which forms the all possible searching.
*/
public ByAll(By[] bys) {
super(bys);
checkNotNull(bys);
this.bys = Arrays.asList(bys);
checkArgument(!this.bys.isEmpty(), "By array should not be empty");
}
@Override
public WebElement findElement(SearchContext context) {
return bys.stream()
.map(by -> getSearchingFunction(by).apply(context))
.filter(Optional::isPresent)
.map(Optional::get)
.findFirst()
.orElseThrow(() -> new NoSuchElementException("Cannot locate an element using " + toString()));
}
}