Skip to content

Instantly share code, notes, and snippets.

@framiere
Created October 1, 2013 16:22
Show Gist options
  • Save framiere/6781129 to your computer and use it in GitHub Desktop.
Save framiere/6781129 to your computer and use it in GitHub Desktop.
@Target(TYPE)
@Retention(RUNTIME)
@Documented
public @interface FollowVisually {
public static enum FollowLevel {
INFO, DEBUG, TRACE
}
long driverWaitBeforeStopInSeconds() default 5;
long waitAfterClickInMs() default 250;
long waitAfterClearInMs() default 250;
long waitAfterStepInMs() default 1500;
long waitAfterFillInMs() default 250;
long waitAfterNotificationInMs() default 1000;
FollowLevel level() default com.jaxio.books.web.selenium.support.FollowVisually.FollowLevel.INFO;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment