All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.serenitybdd.screenplay.actions.selectactions.SelectByIndexFromElement Maven / Gradle / Ivy

There is a newer version: 4.2.8
Show newest version
package net.serenitybdd.screenplay.actions.selectactions;

import net.serenitybdd.core.pages.WebElementFacade;
import net.serenitybdd.screenplay.Actor;
import net.serenitybdd.screenplay.Interaction;
import net.serenitybdd.annotations.Step;

public class SelectByIndexFromElement implements Interaction {
    private WebElementFacade element;
    private Integer[] indexes;

    public SelectByIndexFromElement() {}

    public SelectByIndexFromElement(WebElementFacade element, Integer... indexes) {
        this.element = element;
        this.indexes = indexes;
    }

    @Step("{0} selects index #index")
    public  void performAs(T theUser) {
        for(Integer index : indexes) {
            element.selectByIndex(index);
        }
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy