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

org.testatoo.bundle.html5.input.Input.groovy Maven / Gradle / Ivy

There is a newer version: 1.0.b4
Show newest version
/**
 * Copyright © 2018 Ovea ([email protected])
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.testatoo.bundle.html5.input

import org.testatoo.bundle.html5.helper.LabelHelper
import org.testatoo.core.ComponentException
import static org.testatoo.core.Testatoo.config

/**
 * @author David Avenante ([email protected])
 */
trait Input {
    String placeholder() {
        config.evaluator.eval(id(), "it.prop('placeholder')")
    }

    boolean empty() {
        config.evaluator.check(id(), "\$.trim(it.val()).length == 0")
    }

    boolean readOnly() {
        config.evaluator.check(id(), "it.prop('readonly')")
    }

    boolean required() {
        config.evaluator.check(id(), "it.prop('required')")
    }

    boolean focused() {
        config.evaluator.check(id(), "it.is(':focus')")
    }

    void value(Object value) {
        if (!this.enabled()) {
            throw new ComponentException("${this.class.simpleName} ${this} is disabled and cannot be filled")
        }
        clear()
        config.evaluator.type([String.valueOf(value)])
    }

    String label() {
        LabelHelper.label(this)
    }

    void clear() {
        this.click()
        config.evaluator.runScript("\$('#${id()}').val('').change()")
    }

    Object value() {
        config.evaluator.eval(id(), "it.val()")
    }

    boolean valid() {
        config.evaluator.check(id(), "it[0].validity.valid")
    }

    Number length() {
        BigDecimal length = config.evaluator.eval(id(), "it.prop('maxlength')") as BigDecimal
        if (length.signum() == -1) {
            throw new ComponentException("Not length defined for component ${this.class.simpleName} ${this}")
        }
        length
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy