aquality.selenium.core.elements.ElementState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aquality-selenium-core Show documentation
Show all versions of aquality-selenium-core Show documentation
Library with core functions simplifying work with Selenium-controlled applications.
package aquality.selenium.core.elements;
public enum ElementState {
DISPLAYED("displayed"),
EXISTS_IN_ANY_STATE("exists");
private final String state;
ElementState(String state) {
this.state = state;
}
@Override
public String toString() {
return state;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy