aquality.selenium.elements.Attributes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aquality-selenium Show documentation
Show all versions of aquality-selenium Show documentation
Library around Selenium WebDriver
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