Enum Class BrowserType

java.lang.Object
java.lang.Enum<BrowserType>
com.almis.awe.testing.model.types.BrowserType
All Implemented Interfaces:
Serializable, Comparable<BrowserType>, Constable

public enum BrowserType extends Enum<BrowserType>
  • Enum Constant Details

    • CHROME

      public static final BrowserType CHROME
      Chrome browser in local host
    • EDGE

      public static final BrowserType EDGE
      Edge browser in local host
    • FIREFOX

      public static final BrowserType FIREFOX
      Firefox browser in local host
    • IE

      public static final BrowserType IE
      Internet Explorer browser in local host
    • OPERA

      public static final BrowserType OPERA
      Opera browser in local host
    • HEADLESS_FIREFOX

      public static final BrowserType HEADLESS_FIREFOX
      Headless Firefox browser
    • HEADLESS_CHROME

      public static final BrowserType HEADLESS_CHROME
      Headless Chrome browser
    • REMOTE_FIREFOX

      public static final BrowserType REMOTE_FIREFOX
      Firefox browser in remote host
    • REMOTE_CHROME

      public static final BrowserType REMOTE_CHROME
      Chrome browser in remote host
    • SERVICE_FIREFOX

      public static final BrowserType SERVICE_FIREFOX
      Firefox browser in docker container as service
    • SERVICE_CHROME

      public static final BrowserType SERVICE_CHROME
      Chrome browser in docker container as service
    • SERVICE_EDGE

      public static final BrowserType SERVICE_EDGE
      Edge browser in docker container as service
    • SERVICE_OPERA

      public static final BrowserType SERVICE_OPERA
      Opera browser in docker container as service
    • SERVICE_SAFARI

      public static final BrowserType SERVICE_SAFARI
      Safari browser in docker container as service
  • Method Details

    • values

      public static BrowserType[] 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

      public static BrowserType valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getName

      public String getName()