Enum Class DriverFactory.DriverType
- All Implemented Interfaces:
Serializable, Comparable<DriverFactory.DriverType>, Constable
- Enclosing class:
DriverFactory
List of the supported driver types for execution
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionREST API actions driver.Appium generic browser execution.Appium Chrome browser execution.Appium Chromium browser execution.Appium Flutter app execution.Appium native mobile app execution.Appium Samsung browser execution.BrowserStack cloud execution.Chrome browser execution.Chromium browser execution.Database actions driver.Microsoft Edge browser execution.Firefox browser execution.Internet Explorer browser execution.LambdaTest cloud execution.Safari browser execution.Sikuli desktop automation execution.Terminal actions driver.WebKit browser execution. -
Method Summary
Modifier and TypeMethodDescriptionstatic DriverFactory.DriverTypeReturns the enum constant of this class with the specified name.static DriverFactory.DriverType[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
SIKULI
Sikuli desktop automation execution. -
BROWSERSTACK
BrowserStack cloud execution. -
LAMBDATEST
LambdaTest cloud execution. -
DATABASE
Database actions driver. -
TERMINAL
Terminal actions driver. -
API
REST API actions driver. -
FIREFOX
Firefox browser execution. -
CHROME
Chrome browser execution. -
SAFARI
Safari browser execution. -
IE
Internet Explorer browser execution. -
EDGE
Microsoft Edge browser execution. -
CHROMIUM
Chromium browser execution. -
WEBKIT
WebKit browser execution. -
APPIUM_CHROME
Appium Chrome browser execution. -
APPIUM_CHROMIUM
Appium Chromium browser execution. -
APPIUM_BROWSER
Appium generic browser execution. -
APPIUM_SAMSUNG_BROWSER
Appium Samsung browser execution. -
APPIUM_MOBILE_NATIVE
Appium native mobile app execution. -
APPIUM_FLUTTER
Appium Flutter app execution.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-