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

io.magentys.cinnamon.webdriver.actions.basic.ClearAction 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.WebElement;

public class ClearAction implements Action {

    public static ClearAction clearAction() {
        return new ClearAction();
    }

    @Override
    public void perform(final WebElement target) {
        target.clear();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy