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

net.serenitybdd.screenplay.actions.HitTarget 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;
import org.openqa.selenium.Keys;

import java.util.Arrays;

public class HitTarget implements Interaction {

    private Keys[] keys;
    private Target target;

    public HitTarget(Keys[] keys, Target target) {
        this.keys = Arrays.copyOf(keys,keys.length);
        this.target = target;
    }

    @Step("{0} types '#keys' in #target")
    public  void performAs(T theUser) {
        target.resolveFor(theUser).sendKeys(keys);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy