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

io.magentys.cinnamon.webdriver.actions.basic.HoverAction Maven / Gradle / Ivy

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

import io.magentys.cinnamon.webdriver.actions.Action;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.HasInputDevices;
import org.openqa.selenium.interactions.Mouse;
import org.openqa.selenium.internal.Locatable;

public class HoverAction implements Action {

    private final WebDriver webDriver;

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

    public static HoverAction hoverAction(final WebDriver webDriver) {
        return new HoverAction(webDriver);
    }

    @Override
    public void perform(final WebElement target) {
        final Locatable hoverItem = (Locatable) target;
        final Mouse mouse = ((HasInputDevices) webDriver).getMouse();
        mouse.mouseMove(hoverItem.getCoordinates());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy