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

com.epam.jdi.light.elements.interfaces.common.IsInput Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package com.epam.jdi.light.elements.interfaces.common;

import com.epam.jdi.light.elements.interfaces.base.HasPlaceholder;

/**
 * Created by Roman Iovlev on 26.09.2019
 * Email: [email protected]; Skype: roman.iovlev
 */
public interface IsInput extends IsText, HasPlaceholder {
    default void sendKeys(CharSequence... value) { core().sendKeys(value); }
    default void setText(String value) {
        core().setText(value);
    }
    default void clear() { core().clear(); }
    default void input(String value) {
        core().input(value);
    }
    default void focus() { core().focus(); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy