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

aquality.selenium.elements.Attributes Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
package aquality.selenium.elements;

public enum Attributes {
    CLASS("class"),
    DISABLED("disabled"),
    HREF("href"),
    STYLE("style"),
    READONLY("readOnly"),
    TEXT_CONTENT("textContent"),
    VALUE("value");

    private final String attribute;

    Attributes(String attribute) {
        this.attribute = attribute;
    }

    @Override
    public String toString() {
        return attribute;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy