use of testsappng.Screens.FirstComponentPage in project functional-tests by NativeScript.
the class PageRouterTests method beforeClassPageRouterTests.
@BeforeClass(alwaysRun = true)
public void beforeClassPageRouterTests() throws Exception {
this.homePage = new HomePage("First", this.context);
this.firstComponentPage = new FirstComponentPage(context);
this.secondComponentPage = new SecondComponentPage(this.context);
}
use of testsappng.Screens.FirstComponentPage in project functional-tests by NativeScript.
the class RouterTests method beforeRouterTestsClass.
@BeforeClass(alwaysRun = true)
public void beforeRouterTestsClass() throws Exception {
this.homePage = new HomePage("Router", this.context);
this.firstComponentPage = new FirstComponentPage(this.homePage.context, this.homePage.context.navigationManager);
}
Aggregations