Enum ETestCaseRuntimeMethod

    • Enum Constant Detail

      • JAVA_CLASS_CODE

        public static final ETestCaseRuntimeMethod JAVA_CLASS_CODE
        Run a test case by invoking a method of a Java class that implements the corresponding interface. The Java code is provided as a *.java file that must be compiled.
      • SELENIUM_IDE_JAVA_JUNIT

        public static final ETestCaseRuntimeMethod SELENIUM_IDE_JAVA_JUNIT
        Run a selenium IDE test case exported as Java JUnit.
      • SELENIUM_IDE_SIDE

        public static final ETestCaseRuntimeMethod SELENIUM_IDE_SIDE
        A *.side Selenium IDE test suite.
    • Method Detail

      • values

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

        public static ETestCaseRuntimeMethod 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
      • getDisplayName

        public String getDisplayName()
        Returns:
        The human-readable name of this setup method.
      • valueOfOrNull

        public static ETestCaseRuntimeMethod valueOfOrNull​(String value)
        Parameters:
        value - Value to parse.
        Returns:
        The runtime method corresponding to the given value, or null when no such method exists.