
com.onevizion.uitest.api.annotation.SeleniumBug Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-test-api Show documentation
Show all versions of ui-test-api Show documentation
An API for easily write tests for OneVizion platform
The newest version!
package com.onevizion.uitest.api.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.annotation.ElementType;
import java.lang.annotation.Repeatable;
@Repeatable(SeleniumBug.List.class)
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface SeleniumBug {
String value() default "";
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@interface List {
SeleniumBug[] value();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy