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

net.serenitybdd.screenplay.actions.ClearTarget Maven / Gradle / Ivy

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

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

public class ClearTarget implements Interaction {
    private final Target target;

    @Step("{0} clears field #target")
    public  void performAs(T theUser) {
        target.resolveFor(theUser).clear();
    }

    public ClearTarget(Target target) {
        this.target = target;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy