@Target(value=FIELD) @Inherited @Retention(value=RUNTIME) public @interface Startpage
Declares the annotated page object as start page. This means that the url of the page object will be loaded by webdriver before your test code starts to run.
Usage:
...
public class ExampleTest{
@Page
@Startpage
private HomePage home;
@Test
public void test1(){
home.to();
}
}
In this example the url of HomePage will be loaded before the code in 'test1'
will be executed.
Copyright © 2016. All rights reserved.