Enum BrowserType

    • Enum Constant Detail

      • CHROME_ONE_VERSION_BACK

        public static final BrowserType CHROME_ONE_VERSION_BACK
      • CHROME_TWO_VERSIONS_BACK

        public static final BrowserType CHROME_TWO_VERSIONS_BACK
      • FIREFOX_ONE_VERSION_BACK

        public static final BrowserType FIREFOX_ONE_VERSION_BACK
      • FIREFOX_TWO_VERSIONS_BACK

        public static final BrowserType FIREFOX_TWO_VERSIONS_BACK
      • SAFARI_ONE_VERSION_BACK

        public static final BrowserType SAFARI_ONE_VERSION_BACK
      • SAFARI_TWO_VERSIONS_BACK

        public static final BrowserType SAFARI_TWO_VERSIONS_BACK
      • SAFARI_EARLY_ACCESS

        public static final BrowserType SAFARI_EARLY_ACCESS
      • EDGE

        public static final BrowserType EDGE
        Deprecated.
        The 'EDGE' option that is being used in your browsers' configuration will soon be deprecated. Please change it to either "EDGE_LEGACY" for the legacy version or to "EDGE_CHROMIUM" for the new Chromium-based version.
      • EDGE_LEGACY

        public static final BrowserType EDGE_LEGACY
      • EDGE_CHROMIUM

        public static final BrowserType EDGE_CHROMIUM
      • EDGE_CHROMIUM_ONE_VERSION_BACK

        public static final BrowserType EDGE_CHROMIUM_ONE_VERSION_BACK
      • EDGE_CHROMIUM_TWO_VERSION_BACK

        public static final BrowserType EDGE_CHROMIUM_TWO_VERSION_BACK
    • Method Detail

      • values

        public static BrowserType[] 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 (BrowserType c : BrowserType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BrowserType 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
      • getName

        public String getName()