use of org.mifos.test.acceptance.framework.AppLauncher in project head by mifos.
the class SavingsAccountHelper method navigateToCreateSavingsAccountSearchPage.
private CreateSavingsAccountSearchPage navigateToCreateSavingsAccountSearchPage() {
LoginPage loginPage = new AppLauncher(selenium).launchMifos().logout();
loginPage.verifyPage();
HomePage homePage = loginPage.loginSuccessfullyUsingDefaultCredentials();
homePage.verifyPage();
ClientsAndAccountsHomepage clientsAndAccountsPage = homePage.navigateToClientsAndAccountsUsingHeaderTab();
return clientsAndAccountsPage.navigateToCreateSavingsAccountUsingLeftMenu();
}
use of org.mifos.test.acceptance.framework.AppLauncher in project head by mifos.
the class GroupTest method setUp.
@Override
// one of the dependent methods throws Exception
@SuppressWarnings("PMD.SignatureDeclareThrowsException")
@BeforeMethod(alwaysRun = true)
public void setUp() throws Exception {
super.setUp();
appLauncher = new AppLauncher(selenium);
navigationHelper = new NavigationHelper(selenium);
random = new Random();
groupTestHelper = new GroupTestHelper(selenium);
questionGroupTestHelper = new QuestionGroupTestHelper(selenium);
}
use of org.mifos.test.acceptance.framework.AppLauncher in project head by mifos.
the class CreateGroupLoanAccountTest method loginSuccessfully.
private HomePage loginSuccessfully() {
(new MifosPage(selenium)).logout();
LoginPage loginPage = new AppLauncher(selenium).launchMifos();
loginPage.verifyPage();
HomePage homePage = loginPage.loginSuccessfullyUsingDefaultCredentials();
homePage.verifyPage();
return homePage;
}
use of org.mifos.test.acceptance.framework.AppLauncher in project head by mifos.
the class HolidayTest method setUp.
@Override
// one of the dependent methods throws Exception
@SuppressWarnings("PMD.SignatureDeclareThrowsException")
@BeforeMethod
public void setUp() throws Exception {
super.setUp();
dateTimeUpdaterRemoteTestingService = new DateTimeUpdaterRemoteTestingService(selenium);
navigationHelper = new NavigationHelper(selenium);
loanTestHelper = new LoanTestHelper(selenium);
holidayTestHelper = new HolidayTestHelper(selenium);
appLauncher = new AppLauncher(selenium);
}
use of org.mifos.test.acceptance.framework.AppLauncher in project head by mifos.
the class ViewProductCategoriesTest method setUp.
@Override
@SuppressWarnings("PMD.SignatureDeclareThrowsException")
// one of the dependent methods throws Exception
@BeforeMethod
public void setUp() throws Exception {
super.setUp();
appLauncher = new AppLauncher(selenium);
}
Aggregations