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

io.magentys.cinnamon.webdriver.actions.ChromeActions Maven / Gradle / Ivy

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

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

import static io.magentys.cinnamon.webdriver.actions.chrome.ScrollBeforeClickAction.scrollBeforeClickAction;

class ChromeActions extends DefaultActions {

    public ChromeActions(final WebDriver webDriver) {
        super(webDriver);
    }

    @Override
    public void click(final WebElement target) {
        scrollBeforeClickAction(webDriver).perform(target);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy