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

io.magentys.cinnamon.webdriver.actions.basic.ReplaceTextAction 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 io.magentys.cinnamon.webdriver.actions.Delayable;
import org.openqa.selenium.WebElement;

public class ReplaceTextAction implements Action, Delayable {

    private final ClearAction clearAction;
    private final TypeTextAction typeTextAction;

    public ReplaceTextAction(final CharSequence... keysToSend) {
        clearAction = new ClearAction();
        typeTextAction = new TypeTextAction(keysToSend);
    }

    public static ReplaceTextAction replaceTextAction(final CharSequence... keysToSend) {
        return new ReplaceTextAction(keysToSend);
    }

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

    @Override
    public Action withDelayMillis(final long delayMillis) {
        typeTextAction.withDelayMillis(delayMillis);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy