View Javadoc

1   package com.atlassian.webdriver.testing.annotation;
2   
3   import java.lang.annotation.ElementType;
4   import java.lang.annotation.Inherited;
5   import java.lang.annotation.Retention;
6   import java.lang.annotation.RetentionPolicy;
7   import java.lang.annotation.Target;
8   
9   /**
10   *
11   *
12   * @since 2.1
13   */
14  @Retention(RetentionPolicy.RUNTIME)
15  @Target({ElementType.TYPE, ElementType.METHOD})
16  @Inherited
17  public @interface WindowSize
18  {
19      int width() default 0;
20      int height() default 0;
21  
22      boolean maximize() default false;
23  }