Example usage for org.openqa.selenium WebDriver interface-usage

List of usage examples for org.openqa.selenium WebDriver interface-usage

Introduction

In this page you can find the example usage for org.openqa.selenium WebDriver interface-usage.

Usage

From source file org.jspringbot.keyword.selenium.DummyWebDriver.java

public class DummyWebDriver implements WebDriver, JavascriptExecutor {
    @Override
    public void get(String url) {
    }

    @Override

From source file org.musetest.selenium.mocks.MuseMockDriver.java

/**
 * @author Christopher L Merrill (see LICENSE.txt for license details)
 */
public class MuseMockDriver implements WebDriver, TakesScreenshot {
    @Override
    public void get(String url) {

From source file org.oneandone.qxwebdriver.QxWebDriver.java

/**
 * A Decorator that wraps a {@link org.openqa.selenium.WebDriver} object, 
 * adding qooxdoo-specific features.
 * Note that the WebDriver used <strong>must</strong> implement the 
 * {@link org.openqa.selenium.JavascriptExecutor} interface.
 */

From source file org.qe4j.web.OpenWebDriver.java

/**
 * This file is part of QE4J.
 *
 * QE4J is free software: you can redistribute it and/or modify it under the
 * terms of the GNU General Public License as published by the Free Software
 * Foundation, either version 3 of the License, or (at your option) any later

From source file org.seasar.robot.client.http.webdriver.S2WebDriver.java

/**
 * @author shinsuke
 *
 */
public class S2WebDriver
        implements WebDriver, JavascriptExecutor, FindsById, FindsByClassName, FindsByLinkText, FindsByName,

From source file org.tomitribe.tribestream.registryng.test.selenium.WebAppTesting.java

public abstract class WebAppTesting implements WebDriver, JavascriptExecutor {
    /* needs 7.0.2 to work, workaround is to capture it in the child ATM -> findRegistry()
    @Application
    private Registry registry;
     */

From source file org.webbench.WebBenchDriver.java

/**
 * @author Romain Gilles
 */
public interface WebBenchDriver extends WebDriver, WebBenchSearchContext {

    class Factory {

From source file org.wso2.carbon.greg.publisher.utils.ESWebDriver.java

/**
 * This class wraps the WebDriver given by the framework to achieve following concerns
 * - Slow down the web driver by overriding findElementBy method
 * - Introduce findElementByPoll to refresh page until an element if present for a given number
 * of times
 * This class uses decorator pattern.

From source file org.wso2.developerstudio.codenvy.ui.integration.test.utils.DevSWebDriver.java

/**
 * Using the modified customized version of seleium web driver from
 * https://github.com/wso2/product-es/blob/master/modules/integration/tests-ui-integration/tests-ui-extension/src/test/
 * java/org.wso2.es.ui.integration.extension.util/ESWebDriver.java
 *
 * to enable snapshots on test failure with descriptive test reports

From source file org.wso2.ds.ui.integration.util.DSWebDriver.java

public class DSWebDriver implements WebDriver, JavascriptExecutor, HasInputDevices {
    private static int maxWaitTime;
    private WebDriver driver = null;

    public DSWebDriver(WebDriver webDriver, int maxWaitTime) {
        this.driver = webDriver;