All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.novatec.testit.webtester.junit5.extensions.browsers.EntryPoint Maven / Gradle / Ivy

There is a newer version: 2.10.3
Show newest version
package info.novatec.testit.webtester.junit5.extensions.browsers;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import info.novatec.testit.webtester.browser.Browser;
import info.novatec.testit.webtester.config.Configuration;


/**
 * This annotation can be used on {@link Browser} fields in order to trigger the automatic opening of an URL before each
 * test.
 * 

* The URL can be either completely static (e.g. {@code http://www.example.com}) or you can use variables which will be * resolved against the browser's {@link Configuration}. As an example such an URL could look like this: {@code * http://${host}:${port}/index.html} * * @see Browser * @see Configuration * @see EntryPointExtension * @since 2.1 */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface EntryPoint { /** * The {@link EntryPoint} URL to open before each test. Can be a static URL or use variables. * * @return the URL to open * @see EntryPoint * @since 2.1 */ String value(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy