All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dev9.annotation.MethodDriver Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
package com.dev9.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;


@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface MethodDriver {

    /**
     * Whether the WebDriver will be initialized at runtime
     */
    boolean enabled() default true;

    /**
     * Given build() contains Before.Method the following list of
     * methods will not have a WebDriver instance created
     */
    String[] excludeMethods() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy