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

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

package io.magentys.cinnamon.webdriver.actions.basic;

import io.magentys.cinnamon.webdriver.actions.Action;
import io.magentys.cinnamon.webdriver.actions.synthetic.SyntheticEvent;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

public class ScrollIntoViewAction implements Action {

    private final SyntheticEvent syntheticEvent;

    public ScrollIntoViewAction(final WebDriver webDriver) {
        this.syntheticEvent = new SyntheticEvent(webDriver);
    }

    public static ScrollIntoViewAction scrollIntoViewAction(final WebDriver webDriver) {
        return new ScrollIntoViewAction(webDriver);
    }

    @Override
    public void perform(final WebElement target) {
        syntheticEvent.scrollIntoView(target, true);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy