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

org.selophane.elements.base.Element Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
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