auto_setTextToInput

public void auto_setTextToInput(WebElement element, String value, String placeholder) {
    if (!Utils.isTextFieldEmpty(element, placeholder)) {
        element.clear();
    }

    this.auto_setTextToInputWithoutClear(element, value);
}
What are your feelings
Scroll al inicio