package org.atteo.moonshine.webdriver; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import com.google.inject.BindingAnnotation; /** * Indicates the directory where the screenshots are saved */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.PARAMETER) @BindingAnnotation public @interface ScreenshotDirectory { }