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

com.epam.jdi.light.elements.interfaces.base.HasLabel Maven / Gradle / Ivy

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

import com.epam.jdi.light.common.JDIAction;
import com.epam.jdi.light.elements.common.Label;

/**
 * Created by Roman Iovlev on 26.09.2019
 * Email: [email protected]; Skype: roman.iovlev
 */
public interface HasLabel extends ICoreElement {
    default Label label() {
        return core().label();
    }
    /**
     * Gets label text
     * @return String text
     */
    @JDIAction("Get '{name}' label text")
    default String labelText() {
        return core().labelText();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy