org.selophane.elements.base.Element Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webtest Show documentation
Show all versions of webtest Show documentation
Some additional helper for webtesting with selenium
package org.selophane.elements.base;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.internal.Locatable;
import org.openqa.selenium.internal.WrapsElement;
/**
* wraps a web element interface with extra functionality. Anything added here
* will be added to all descendants.
*/
@ImplementedBy(ElementImpl.class)
public interface Element extends WebElement, WrapsElement, Locatable {
/**
* Returns true when the inner element is ready to be used.
*
* @return boolean true for an initialized WebElement, or false if we were
* somehow passed a null WebElement.
*/
boolean elementWired();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy