![JAR search and dependency download from the Maven repository](/logo.png)
com.polonium.webdriver.annotations.PageURL Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polonium-webdriver Show documentation
Show all versions of polonium-webdriver Show documentation
Polonium-Webdriver extends polonium core with paging functionality (page-object pattern),
and handles/recognizes fails made by selenium driver. This version has Polonium-Core included.
package com.polonium.webdriver.annotations;
import static java.lang.annotation.ElementType.TYPE;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/** Alternative for defining URL of PoloniumPage in constructor
*
* @author Marek Serwanski
*
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(TYPE)
public @interface PageURL {
String value() default "No @PageURL annotation defined on WebPage";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy