io.magentys.fest.locators.FindBy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cherry-fest Show documentation
Show all versions of cherry-fest Show documentation
Integrate Fest Swing App Testing framework with Cherry
package io.magentys.fest.locators;
import java.awt.*;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface FindBy {
public static final String defaultMemoryKey = "latest.frame";
public static final String defaultText = "";
Class extends Component> clazz();
String attributes() default defaultText;
String rememberAs() default defaultMemoryKey;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy