net.serenitybdd.screenplay.AnonymousInteraction Maven / Gradle / Ivy
package net.serenitybdd.screenplay;
import java.util.List;
public class AnonymousInteraction extends AnonymousPerformable implements Interaction {
public AnonymousInteraction(String title, List steps) {
super(title, steps);
}
public AnonymousPerformableFieldSetter with(String fieldName) {
return new AnonymousPerformableFieldSetter<>(this, fieldName);
}
}