use of org.mifos.test.acceptance.framework.HomePage in project head by mifos.
the class CollectionSheetEntryConfirmationPage method navigateToHomePage.
public HomePage navigateToHomePage() {
selenium.click("id=header.link.home");
waitForPageToLoad();
HomePage homePage = new HomePage(selenium);
homePage.verifyPage();
return homePage;
}
use of org.mifos.test.acceptance.framework.HomePage in project head by mifos.
the class ViewReportCategoriesTest method loginAndGoToAdminPage.
private AdminPage loginAndGoToAdminPage() {
HomePage homePage = appLauncher.launchMifos().loginSuccessfullyUsingDefaultCredentials();
homePage.verifyPage();
AdminPage adminPage = homePage.navigateToAdminPage();
adminPage.verifyPage();
return adminPage;
}
Aggregations