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

net.serenitybdd.screenplay.actions.deselectactions.DeselectByIndexFromTarget Maven / Gradle / Ivy

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

import net.serenitybdd.screenplay.Actor;
import net.serenitybdd.screenplay.Interaction;
import net.serenitybdd.screenplay.targets.Target;
import net.serenitybdd.annotations.Step;

public class DeselectByIndexFromTarget implements Interaction {
    private Target target;
    private Integer index;

    public DeselectByIndexFromTarget() {}

    public DeselectByIndexFromTarget(Target target, Integer index) {
        this.target = target;
        this.index = index;
    }

    @Step("{0} deselects index #index in #target")
    public  void performAs(T theUser) {
        target.resolveFor(theUser).deselectByIndex(index);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy