use of org.mifos.test.acceptance.framework.AppLauncher in project head by mifos.
the class RESTAPITestHelper method navigateToJsonAjaxPage.
public void navigateToJsonAjaxPage() {
LoginPage loginPage = new AppLauncher(selenium).launchMifos();
loginPage.loginSuccessfullyUsingDefaultCredentials();
selenium.open("jsonAjax.ftl");
}
use of org.mifos.test.acceptance.framework.AppLauncher in project head by mifos.
the class FundTest method setUp.
@Override
// one of the dependent methods throws Exception
@SuppressWarnings("PMD.SignatureDeclareThrowsException")
@BeforeMethod
public void setUp() throws Exception {
super.setUp();
appLauncher = new AppLauncher(selenium);
}
use of org.mifos.test.acceptance.framework.AppLauncher in project head by mifos.
the class ViewOfficeHierarchyTest method setUp.
@Override
@SuppressWarnings("PMD.SignatureDeclareThrowsException")
@BeforeMethod
public void setUp() throws Exception {
super.setUp();
appLauncher = new AppLauncher(selenium);
}
use of org.mifos.test.acceptance.framework.AppLauncher in project head by mifos.
the class ViewOrganizationSettingsTest method setUp.
@Override
@SuppressWarnings("PMD.SignatureDeclareThrowsException")
@BeforeMethod
public void setUp() throws Exception {
super.setUp();
appLauncher = new AppLauncher(selenium);
applicationDatabaseOperation.updateGLIM(0);
applicationDatabaseOperation.updateLSIM(0);
}
use of org.mifos.test.acceptance.framework.AppLauncher in project head by mifos.
the class AdditionalHolidayTest method setUp.
@Override
@SuppressWarnings("PMD.SignatureDeclareThrowsException")
// one of the dependent methods throws Exception
@BeforeMethod(alwaysRun = true)
public void setUp() throws Exception {
super.setUp();
dateTimeUpdaterRemoteTestingService = new DateTimeUpdaterRemoteTestingService(selenium);
appLauncher = new AppLauncher(selenium);
holidayTestHelper = new HolidayTestHelper(selenium);
centerTestHelper = new CenterTestHelper(selenium);
groupTestHelper = new GroupTestHelper(selenium);
clientTestHelper = new ClientTestHelper(selenium);
loanTestHelper = new LoanTestHelper(selenium);
navigationHelper = new NavigationHelper(selenium);
}
Aggregations