List of usage examples for org.openqa.selenium.remote RemoteWebDriver subclass-usage
From source file br.ufmg.dcc.saotome.beholder.selenium.WebDriverAdapter.java
/**
* The class WebDriverAdapter was created to solve the DOM reference lost in Selenium when
* an Ajax call reload an object in HTML page. Webdriver sends a StaleElementReferenceException
* when it idenfifies a WebElement manipulating a DOM object that doesn't exit anymore and gives
* the responsability of identify this problem to tester. So, to solve this problem, this class
* implements the WebDriver interface and encapsule the WebDriver object returned by WebDriver,
From source file com.elastica.driver.ScreenShotRemoteWebDriver.java
public class ScreenShotRemoteWebDriver extends RemoteWebDriver implements TakesScreenshot { public ScreenShotRemoteWebDriver(final DesiredCapabilities capabilities) { super(capabilities); } public ScreenShotRemoteWebDriver(final URL url, final DesiredCapabilities capabilities) {
From source file com.github.seleniumpm.SeleniumWebdriver.java
/** * Implementation of the Selenium interface using WebDriver */ @Deprecated public class SeleniumWebdriver extends RemoteWebDriver implements Selenium { protected WebDriver driver;
From source file com.google.android.testing.nativedriver.client.AndroidNativeDriver.java
/**
* Represents an Android NativeDriver (AND) client used to drive native
* Android applications.
*
* @author Matt DeVore
* @author Dezheng Xu
From source file com.google.iphone.testing.nativedriver.client.IosNativeDriver.java
/** * Represents an iOS NativeDriver client used to drive native iOS applications. * * @author Tomohiro Kaizu */ public class IosNativeDriver extends RemoteWebDriver
From source file com.htmlhifive.pitalium.core.selenium.PtlWebDriver.java
/** * WebDriver?{@link org.openqa.selenium.remote.RemoteWebDriver} * ?????Web?????????????<br/> * ?????WebDriver????????? */ public abstract class PtlWebDriver extends RemoteWebDriver {
From source file com.jaliansystems.customiSE.driver.CustomiSEDriver.java
public class CustomiSEDriver extends RemoteWebDriver { /** * Port which is used by default. */ private final static int DEFAULT_PORT = 0;
From source file com.lohika.alp.selenium.RemoteWebDriverTakeScreenshotFix.java
/** * Fixing issue that RemoteWebDriver not implement * */ public class RemoteWebDriverTakeScreenshotFix extends RemoteWebDriver implements TakesScreenshot {
From source file com.machinepublishers.jbrowserdriver.JBrowserDriver.java
/**
* A Selenium-compatible and WebKit-based web driver written in pure Java.
* <p>
* See <a href="https://github.com/machinepublishers/jbrowserdriver#usage">
* https://github.com/machinepublishers/jbrowserdriver#usage</a> for basic usage info.
* <p>
From source file com.mengge.DefaultGenericMobileDriver.java
@SuppressWarnings({ "unchecked", "rawtypes" }) abstract class DefaultGenericMobileDriver<T extends WebElement> extends RemoteWebDriver implements MobileDriver<T> { public DefaultGenericMobileDriver(CommandExecutor executor, Capabilities desiredCapabilities) { super(executor, desiredCapabilities); }