Skip to content

Instantly share code, notes, and snippets.

@lfryc
Last active December 22, 2015 06:08
Show Gist options
  • Save lfryc/6428591 to your computer and use it in GitHub Desktop.
Save lfryc/6428591 to your computer and use it in GitHub Desktop.
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@ImplementsLocationStrategy(ByJQuery.JQueryLocationStrategy.class)
public @interface $ {
String value();
}
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@ImplementsLocationStrategy(ByJQuery.JQueryLocationStrategy.class)
public @interface jQuery {
String value();
}
@jQuery(".ui-calendar:visible")
JQueryUICalendar calendar;
// this won't be allowed by compiler
@$(".ma-rockin-element")
WebElement guessTheNumber;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment