net.serenitybdd.screenplay.questions.TheCoordinates Maven / Gradle / Ivy
package net.serenitybdd.screenplay.questions;
import net.serenitybdd.core.pages.WebElementFacade;
import net.serenitybdd.core.pages.WebElementState;
import net.serenitybdd.screenplay.Question;
import net.serenitybdd.screenplay.abilities.BrowseTheWeb;
import net.serenitybdd.screenplay.targets.Target;
import org.openqa.selenium.By;
import org.openqa.selenium.interactions.Coordinates;
import java.util.List;
import java.util.stream.Collectors;
import static java.util.Collections.singletonList;
/**
* Provides coordinates of an element for advanced interactions.
* Note that some coordinates (such as screen coordinates) are evaluated lazily since the element may have to be scrolled into view.
*/
public class TheCoordinates {
public static Question of(Target target) {
return Question.about("coordinates of " + target.getName()).answeredBy(actor -> matches(target.resolveAllFor(actor)));
}
public static Question of(By byLocator) {
return Question.about("coordinates of element located by " + byLocator).answeredBy(actor -> matches(BrowseTheWeb.as(actor).findAll(byLocator)));
}
public static Question of(String locator) {
return Question.about("coordinates of " + locator).answeredBy(actor -> matches(BrowseTheWeb.as(actor).findAll(locator)));
}
public static Question> ofEach(Target target) {
return Question.about("coordinates of each of " + target.getName()).answeredBy(
actor -> target.resolveAllFor(actor)
.stream()
.map(element -> matches(singletonList(element)))
.collect(Collectors.toList()));
}
public static Question> ofEach(By byLocator) {
return Question.about("coordinates of each of element located by " + byLocator).answeredBy(
actor -> BrowseTheWeb.as(actor).findAll(byLocator)
.stream()
.map(element -> matches(singletonList(element)))
.collect(Collectors.toList()));
}
public static Question> ofEach(String locator) {
return Question.about("coordinates of each of " + locator)
.answeredBy(actor -> BrowseTheWeb.as(actor).findAll(locator)
.stream()
.map(element -> matches(singletonList(element)))
.collect(Collectors.toList()));
}
private static Coordinates matches(List elements) {
return elements.stream()
.findFirst()
.map(WebElementFacade::getCoordinates)
.orElse(null);
}
}