com.github.mkolisnyk.sirius.client.ui.FindBy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sirius-java-client Show documentation
Show all versions of sirius-java-client Show documentation
Common client library for automated GUI testing
The newest version!
package com.github.mkolisnyk.sirius.client.ui;
import java.lang.annotation.ElementType;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.github.mkolisnyk.sirius.client.Platform;
@Target(ElementType.FIELD)
@Repeatable(FindByList.class)
@Retention(value = RetentionPolicy.RUNTIME)
public @interface FindBy {
String locator();
Platform platform() default Platform.ANY;
String itemLocator() default "";
String scrollTo() default "";
ScrollTo scrollDirection() default ScrollTo.TOP_BOTTOM;
String format() default "";
boolean excludeFromSearch() default false;
}