List of usage examples for org.openqa.selenium WebElement interface-usage
From source file com.seleniumtests.uipage.htmlelements.HtmlElement.java
/**
* Provides methods to interact with a web page. All HTML element (ButtonElement, LinkElement, TextFieldElement, etc.)
* extends from this class.
*
*
*/
From source file com.vaadin.testbench.TestBenchElement.java
/** * TestBenchElement is a WebElement wrapper. It provides Vaadin specific helper * functionality. TestBenchElements are created when you search for elements * from TestBenchTestCase or a context relative search from TestBenchElement. */ public class TestBenchElement extends AbstractHasTestBenchCommandExecutor implements WrapsElement, WebElement,
From source file com.vilt.minium.impl.DelegateWebElement.java
public class DelegateWebElement implements WebElement, WrapsDriver, Locatable { private WebElement webElement; private WebElementsDriver<?> webDriver; public DelegateWebElement(WebElement webElement, WebElementsDriver<?> webDriver) {
From source file minium.web.internal.drivers.DocumentWebElement.java
public class DocumentWebElement implements WebElement, WrapsDriver, Locatable { private final WebElement webElement; private final InternalDocumentWebDriver webDriver; public DocumentWebElement(WebElement webElement, DocumentWebDriver webDriver) {
From source file minium.web.internal.drivers.MockWebElement.java
public class MockWebElement implements WebElement, Locatable { class MockCoordinates implements Coordinates { @Override public Point onScreen() { return point;
From source file net.javacrumbs.webview.driver.NodeWebElement.java
public class NodeWebElement implements WebElement { private final Node node; public NodeWebElement(Node element) { this.node = element; }
From source file net.mindengine.galen.components.mocks.driver.MockedDriverElement.java
public class MockedDriverElement implements WebElement { private final MockedPageItem item; public MockedDriverElement(MockedPageItem item) { this.item = item; }
From source file org.aludratest.service.gui.web.selenium.selenium2.ElementWrapper.java
/** Interface for {@link WebElement} implementations that wrap other WebElements. * @author Volker Bergmann */ public interface ElementWrapper extends WebElement { /** Returns the wrapped WebElement. * @return the wrapped WebElement */ WebElement getWrappedElement();
From source file org.jboss.arquillian.graphene.ftest.enricher.page.fragment.PageFragmentImplementingWebElement.java
public abstract class PageFragmentImplementingWebElement implements WebElement { @Root private WebElement input; public String getInputText() {
From source file org.jboss.arquillian.graphene.GrapheneElement.java
/**
* <p>
* Interface for Graphene extensions of {@link WebElement}.
* </p>
*
* <p>