public static void ClickMortgageRequest(AutomationAgent agent)
 {
     agent.Click(DashboardPage.MortgageRequestBtnLabel);
 }
 public static void ClickMakePayment(AutomationAgent agent)
 {
     agent.Click(DashboardPage.MakePaymentBtnLabel);
 }
 public static void ClickExpenseReport(AutomationAgent agent)
 {
     agent.Click(DashboardPage.ExpenseReportBtnLabel);
 }
 public static void ClickLogout(AutomationAgent agent)
 {
     agent.Click(DashboardPage.LogoutBtnLabel);
 }
 public static void ClickLogin(AutomationAgent agent)
 {
     agent.Click(LoginPage.LoginButton);
 }