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

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

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

import net.serenitybdd.model.collect.NewList;
import net.serenitybdd.core.pages.WebElementFacade;
import net.serenitybdd.screenplay.Interaction;
import net.serenitybdd.screenplay.targets.Target;
import org.openqa.selenium.By;

import static net.serenitybdd.screenplay.Tasks.instrumented;

/**
 * Double-click on a button or element
 */
public class DoubleClick {

    public static Interaction on(String cssOrXpathForElement) {
        return instrumented(DoubleClickOnTarget.class, Target.the(cssOrXpathForElement).locatedBy(cssOrXpathForElement));
    }

    public static Interaction on(Target target) {
        return instrumented(DoubleClickOnTarget.class,target);
    }

    public static Interaction on(WebElementFacade element) {
        return instrumented(DoubleClickOnElement.class, element);
    }

    public static Interaction on(By... locators) {
        return instrumented(DoubleClickOnBy.class, NewList.of(locators));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy