use of testsappng.Screens.HomePage 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.HomePage 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);
}
use of testsappng.Screens.HomePage in project functional-tests by NativeScript.
the class ListPickerTest method beforeListPickerTestClass.
@BeforeClass(alwaysRun = true)
public void beforeListPickerTestClass() throws Exception {
this.homePage = new HomePage(ListPickerTest.LIST_PICKER_EXAMPLE, this.context);
UIElement listPicker = this.context.wait.waitForVisible(this.locators.byText(ListPickerTest.LIST_PICKER_EXAMPLE), 3, true);
this.homePage.navigateTo(listPicker, "list-picker-test-page");
}
Aggregations