net.serenitybdd.screenplay.questions.SelectedVisibleTextValue 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 java.util.Collection;
import java.util.List;
import java.util.stream.Collectors;
import static java.util.Collections.singletonList;
public class SelectedVisibleTextValue {
public static Question of(Target target) {
return Question.about("selected option of " + target.getName()).answeredBy(actor -> matches(target.resolveAllFor(actor)));
}
public static Question of(By byLocator) {
return Question.about("selected option of element located by " + byLocator).answeredBy(actor -> matches(BrowseTheWeb.as(actor).findAll(byLocator)));
}
public static Question of(String locator) {
return Question.about("selected option of " + locator).answeredBy(actor -> matches(BrowseTheWeb.as(actor).findAll(locator)));
}
public static Question> ofEach(Target target) {
return Question.about("selected options 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("selected options 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("selected option of " + locator).answeredBy(actor -> BrowseTheWeb.as(actor).findAll(locator)
.stream()
.map(element -> matches(singletonList(element)))
.collect(Collectors.toList()));
}
private static String matches(List elements) {
return elements.stream()
.findFirst()
.map(WebElementState::getSelectedVisibleTextValue)
.orElse("");
}
}