in Pages/Teller.js [142:149]
clickOnCashChequeForCustomer: function(customerAccount){
link = "/teller/customers/detail/" + customerAccount + "/transaction/cheque?transactionType=CCHQ";
a = $('a[href= "' + link +'"]');
browser.wait(EC.visibilityOf(a), 5000);
browser.executeScript("arguments[0].scrollIntoView();", a.getWebElement());
a.click();
browser.wait(EC.presenceOf($("fims-cheque-transaction-form")), 4000);
},