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

aquality.selenium.core.elements.ElementState Maven / Gradle / Ivy

Go to download

Library with core functions simplifying work with Selenium-controlled applications.

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

/**
 * 

ElementState class.

* * @author lenovo * @version $Id: $Id */ public enum ElementState { DISPLAYED("displayed"), EXISTS_IN_ANY_STATE("exists"); private final String state; ElementState(String state) { this.state = state; } /** {@inheritDoc} */ @Override public String toString() { return state; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy