com.automation.remarks.video.annotations.Video Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of video-recorder Show documentation
Show all versions of video-recorder Show documentation
Video Recorder is a library that allows to record selenium tests
The newest version!
package com.automation.remarks.video.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by sergey on 4/13/16.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Video {
String name() default "";
boolean enabled() default true;
}