net.thucydides.core.webdriver
Enum SupportedWebDriver

Package class diagram package SupportedWebDriver
java.lang.Object
  extended by java.lang.Enum<SupportedWebDriver>
      extended by net.thucydides.core.webdriver.SupportedWebDriver
All Implemented Interfaces:
Serializable, Comparable<SupportedWebDriver>

public enum SupportedWebDriver
extends Enum<SupportedWebDriver>

The list of supported web drivers. These are the drivers that support screenshots.


Enum Constant Summary
ANDROID
          Android driver
CHROME
          Chrome WebDriver driver.
FIREFOX
          Firefox WebDriver driver.
HTMLUNIT
          HTMLUnit - fast, but no screenshots.
IEXPLORER
          Internet Explorer
IPHONE
          iPhone driver
OPERA
          Opera - use it with SauceLabs
PHANTOMJS
          Phantom-JS driver - headless javascript.
PROVIDED
          A user-provided driver
REMOTE
          Remote web driver
SAFARI
          Safari
 
Method Summary
static SupportedWebDriver getClosestDriverValueTo(String value)
           
static SupportedWebDriver getDriverTypeFor(String value)
           
 Class<? extends org.openqa.selenium.WebDriver> getWebdriverClass()
           
static String listOfSupportedDrivers()
          HTMLUnit - mainly for testing, as this driver does not support screenshots or much AJAX.
static SupportedWebDriver valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SupportedWebDriver[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FIREFOX

public static final SupportedWebDriver FIREFOX
Firefox WebDriver driver.


CHROME

public static final SupportedWebDriver CHROME
Chrome WebDriver driver.


OPERA

public static final SupportedWebDriver OPERA
Opera - use it with SauceLabs


HTMLUNIT

public static final SupportedWebDriver HTMLUNIT
HTMLUnit - fast, but no screenshots.


PHANTOMJS

public static final SupportedWebDriver PHANTOMJS
Phantom-JS driver - headless javascript.


REMOTE

public static final SupportedWebDriver REMOTE
Remote web driver


ANDROID

public static final SupportedWebDriver ANDROID
Android driver


IPHONE

public static final SupportedWebDriver IPHONE
iPhone driver


IEXPLORER

public static final SupportedWebDriver IEXPLORER
Internet Explorer


SAFARI

public static final SupportedWebDriver SAFARI
Safari


PROVIDED

public static final SupportedWebDriver PROVIDED
A user-provided driver

Method Detail

values

public static SupportedWebDriver[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SupportedWebDriver c : SupportedWebDriver.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SupportedWebDriver valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getWebdriverClass

public Class<? extends org.openqa.selenium.WebDriver> getWebdriverClass()

listOfSupportedDrivers

public static String listOfSupportedDrivers()
HTMLUnit - mainly for testing, as this driver does not support screenshots or much AJAX.


getClosestDriverValueTo

public static SupportedWebDriver getClosestDriverValueTo(String value)

getDriverTypeFor

public static SupportedWebDriver getDriverTypeFor(String value)
                                           throws UnsupportedDriverException
Throws:
UnsupportedDriverException


Copyright © 2011-2013 Wakaleo Consulting. All Rights Reserved.