use of org.mifos.test.acceptance.framework.loan.ViewLoanStatusHistoryPage in project head by mifos.
the class LoanTestHelper method verifyLastEntryInStatusHistory.
public void verifyLastEntryInStatusHistory(String loanId, String oldStatus, String newStatus) {
LoanAccountPage loanAccountPage = navigationHelper.navigateToLoanAccountPage(loanId);
ViewLoanStatusHistoryPage viewLoanStatusHistoryPage = loanAccountPage.navigateToViewLoanStatusHistoryPage();
viewLoanStatusHistoryPage.verifyLastEntryInStatusHistory(oldStatus, newStatus);
}
Aggregations