@Target(value=ANNOTATION_TYPE) @Retention(value=RUNTIME) @Documented public @interface Qualifier
Usage:
@Drone WebDriver instance1;
@Drone @RemoteMachine WebDriver instance2;
If @RemoteMachine is an annotation marked with Qualifier, then two different instances of WebDriver object
will be configured and instantiated before execution of the first test method.
Copyright © 2017 JBoss by Red Hat. All rights reserved.