Enum ProjectTypeEnum

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ProjectTypeEnum>

    public enum ProjectTypeEnum
    extends java.lang.Enum<ProjectTypeEnum>
    • Field Detail

      • PROJECT_TYPE_KEY

        public static final java.lang.String PROJECT_TYPE_KEY
        See Also:
        Constant Field Values
    • Method Detail

      • values

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

        public static ProjectTypeEnum valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getLocalDriverImplementation

        public abstract java.lang.Class<? extends org.openqa.selenium.remote.RemoteWebDriver> getLocalDriverImplementation()
        Returns:
        driver type to create instance on LocalWebExecutionStrategy or DownloadLatestStrategy. both local.
      • getRemoteDriverImplementation

        public abstract java.lang.Class<? extends org.openqa.selenium.remote.RemoteWebDriver> getRemoteDriverImplementation()
        Returns:
        driver type to create instance with selenium hub Strategy.
      • getName

        public abstract java.lang.String getName()
        Returns:
        driver name without the Driver at the end. Example: Chrome
      • getProperties

        public abstract java.util.Properties getProperties()
      • getDesiredCapabilities

        public org.openqa.selenium.remote.DesiredCapabilities getDesiredCapabilities()