Annotation Type OrderedUITest


@Target(METHOD)
@Retention(RUNTIME)
public @interface OrderedUITest
You can optionally add the @OrderedUITest annotation to your UITest class methods to control the order in which they are run. (Without this annotation, the ordering is not guaranteed and may vary from run to run.)
  • Required Element Summary

    Required Elements 
    Modifier and Type Required Element Description
    int order
    The order in which to run the annotated method.
  • Element Details

    • order

      int order
      The order in which to run the annotated method. Methods will be run in order from min to max value of this property. Values need not be consecutive.