org.testobject.rest.api.appium.common.TestObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testobject-java-api Show documentation
Show all versions of testobject-java-api Show documentation
java wrapper for testobject's java apis
package org.testobject.rest.api.appium.common;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.util.concurrent.TimeUnit;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface TestObject {
boolean testLocally() default false;
String testObjectApiEndpoint() default "";
String testObjectApiKey() default "";
long testObjectSuiteId() default 0;
long testObjectAppId() default 0;
int timeout() default 60;
TimeUnit timeoutUnit() default TimeUnit.MINUTES;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy