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

io.magentys.cinnamon.webdriver.actions.absolute.AbsoluteClickAction Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package io.magentys.cinnamon.webdriver.actions.absolute;

import org.openqa.selenium.Point;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.interactions.Actions;

class AbsoluteClickAction implements AbsolutePointAction {

    private final WebDriver webDriver;

    public AbsoluteClickAction(final WebDriver webDriver) {
        this.webDriver = webDriver;
    }

    @Override
    public void perform(final Point target) {
        new Actions(webDriver).moveByOffset(target.x, target.y).click().perform();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy