1 package com.atlassian.webdriver.testing.annotation;
2
3 import com.atlassian.pageobjects.browser.Browser;
4
5 import java.lang.annotation.ElementType;
6 import java.lang.annotation.Inherited;
7 import java.lang.annotation.Retention;
8 import java.lang.annotation.RetentionPolicy;
9 import java.lang.annotation.Target;
10
11
12
13
14
15
16
17
18
19
20 @Retention (RetentionPolicy.RUNTIME)
21 @Target ({ElementType.METHOD, ElementType.TYPE})
22 @Inherited
23 @Deprecated
24 public @interface IgnoreBrowser
25 {
26 Browser[] value() default {Browser.ALL};
27 String reason() default ("No reason given");
28 }