blob: c627ad102f0997973a63d6562285ee60699ba10a [file] [log] [blame]
//Offices.js
var Common = require('../Pages/Common.js');
//office creation
var officeIdentifierInput = $(".mat-input-infix input[placeholder='Identifier']");
var officeNameInput = $(".mat-input-infix input[formcontrolname='name']");
var officeDescriptionInput = $(".mat-input-infix input[formcontrolname='description']");
var streetInput = $(".mat-input-infix input[formcontrolname='street']");
//teller creation
var numberInput = $(".mat-input-infix input[placeholder='Number']");
var passwordInput = $(".mat-input-infix input[formcontrolname='password']");
var withdrawalLimitInput = $(".mat-input-infix input[formcontrolname='cashdrawLimit']");
var tellerAccountInput = $("fims-account-select[formcontrolname='tellerAccountIdentifier'] input");
var vaultAccountInput =$("fims-account-select[formcontrolname='vaultAccountIdentifier'] input");
var chequesReceivableAccountInput = $("fims-account-select[formcontrolname='chequesReceivableAccount'] input");
//open teller
var assignedEmployeeInput = $("fims-employee-auto-complete[formcontrolname='assignedEmployeeIdentifier'] input");
var amountInput = $("input[formcontrolname='amount']");
var radioNone = $$("md-radio-group[formcontrolname='adjustment'] md-radio-button").first();
var radioCashIn = $$("md-radio-group[formcontrolname='adjustment'] md-radio-button").last();
//general elements
var primaryButton = $$(".mat-raised-button.mat-primary");
var createOfficeButton = $$(".mat-raised-button.mat-primary").first();
//Actions specific to the Offices section, including Teller management
var EC = protractor.ExpectedConditions;
module.exports = {
goToManageOfficesViaSidePanel: function() {
browser.wait(EC.visibilityOf($$("a[href='/offices']").get(0)), 5000);
$$("a[href='/offices']").first().click();
},
clickViewOfficesFromQuickAccess: function() {
browser.wait(EC.visibilityOf($$("a[href='/offices']").get(1)), 5000);
$$("a[href='/offices']").get(1).click();
},
verifyCardHasTitleCreateOffice: function () {
browser.wait(EC.textToBePresentInElement($("fims-layout-card-over .mat-toolbar-row span"), "Create new office"), 3000);
},
clickButtonCreateNewOffice: function(){
browser.wait(EC.visibilityOf($("a[title='Create branch office']")), 5000);
$("a[title='Create branch office']").click();
},
enterTextIntoOfficeIdentifierInputField: function(text) {
officeIdentifierInput.click().sendKeys(text);
},
enterTextIntoOfficeNameInputField: function(text) {
officeNameInput.click().sendKeys(text);
},
enterTextIntoOfficeDescriptionInputField: function(text){
officeDescriptionInput.click().sendKeys(text);
},
clickEnabledContinueButtonForOfficeDetails: function(){
expect($$(".mat-raised-button").get(0).isEnabled()).toBeTruthy();
$$(".mat-raised-button").get(0).click();
},
clickEnabledCreateOfficeButton: function(){
browser.executeScript("arguments[0].scrollIntoView();", createOfficeButton.getWebElement());
browser.wait(EC.elementToBeClickable(createOfficeButton), 3000);
primaryButton.filter(function(elem, index) {
return elem.$("span").getText().then(function(text) {
return text === "CREATE OFFICE";
});
}).click();
},
clickButtonCreateHeadquarter: function(){
expect($(".mat-raised-button.mat-primary").isEnabled()).toBeTruthy();
$(".mat-raised-button.mat-primary").click();
},
verifyNoHeadquarterExistingYet: function(){
browser.wait(EC.visibilityOf($(".mat-card-title .material-icons")), 5000);
title = $(".mat-card .mat-card-title span").getText();
expect(title).toEqual("No Headquarter found");
},
//teller creation, updating, opening and closing
goToManageTellersForOfficeByIdentifier: function(identifier){
link = '/offices/detail/' + identifier + '/tellers';
browser.wait(EC.visibilityOf($('a[href="' + link +'"]')), 5000);
$('a[href="' + link +'"]').click();
},
clickCreateTellerForOfficeByIdentifier: function(identifier){
link = '/offices/detail/' + identifier + '/tellers/create';
browser.wait(EC.visibilityOf($('a[href="' + link + '"]')), 5000);
$('a[href="' + link + '"]').click();
},
enterTextIntoTellerNumberInputField: function(text) {
browser.wait(EC.visibilityOf(numberInput), 5000);
numberInput.click().sendKeys(text);
},
enterTextIntoPasswordInputField: function(text) {
passwordInput.click().sendKeys(text);
},
enterTextIntoCashWithdrawalLimitInputField: function(text) {
withdrawalLimitInput.click().sendKeys(text);
},
enterTextIntoTellerAccountInputFieldAndSelectMatchingEntry: function(text) {
tellerAccountInput.click().sendKeys(text);
browser.wait(EC.visibilityOf($(".mat-option")), 5000);
$$(".mat-option").first().click();
},
enterTextIntoVaultAccountInputFieldAndSelectMatchingEntry: function(text) {
vaultAccountInput.click().sendKeys(text);
browser.wait(EC.visibilityOf($(".mat-option")), 5000);
$$(".mat-option").first().click();
},
enterTextIntoChequesReceivableAccountInputFieldAndSelectMatchingEntry: function(text) {
chequesReceivableAccountInput.click().sendKeys(text);
browser.wait(EC.visibilityOf($(".mat-option")), 5000);
$$(".mat-option").first().click();
},
verifyRadioNoneSelected: function(){
expect(radioNone.getAttribute('class')).toMatch("mat-radio-checked");
},
selectRadioCashIn: function(){
radioCashIn.click();
},
verifyAmountInputDisabledIfNoneSelected: function(){
expect(amountInput.isEnabled()).toBe(false);
},
verifyAmountInputEnabledIfCashInSelected: function(){
expect(amountInput.isEnabled()).toBe(true);
},
enterTextIntoAmountInputField: function(text) {
amountInput.click().sendKeys(text);
},
enterTextIntoAssignedEmployeeInputField: function(text) {
assignedEmployeeInput.click().sendKeys(text);
},
selectOptionInListByName: function(name){
browser.wait(EC.visibilityOf($(".mat-option")), 3000);
element(by.cssContainingText('.mat-option', name)).click();
},
clickEnabledCreateTellerButton: function(){
browser.executeScript("arguments[0].scrollIntoView();", primaryButton.get(0).getWebElement());
primaryButton.filter(function(elem, index) {
return elem.$("span").getText().then(function(text) {
return text === "CREATE TELLER";
});
}).click();
},
clickActionOpenForTellerOfOffice: function(teller, office){
link = '/offices/detail/' + office + '/tellers/detail/' + teller + '/command?action=OPEN';
browser.wait(EC.elementToBeClickable($('a[href="' + link + '"]')), 5000);
$('a[href="' + link + '"]').click();
},
clickEnabledOpenTellerButton: function(){
browser.wait(EC.visibilityOf($(".mat-raised-button.mat-primary")), 5000);
//expect($(".mat-raised-button.mat-primary").isEnabled()).toBeTruthy();
$(".mat-raised-button.mat-primary").click();
},
verifyTellerStatusIs: function(expectedStatus){
browser.wait(EC.visibilityOf($("fims-state-display")), 5000);
status = $("fims-state-display .mat-list-text .mat-line").getText();
expect(status).toEqual(expectedStatus);
},
verifyMessageDisplayed: function(message){
expect($("td-message .td-message-label").getText()).toEqual(message);
},
verifyAssignedEmployeeForTellerIs: function(assignedEmployee) {
expect($$("fims-layout-card-over .mat-list-text").filter(function (elem, index) {
return elem.$("h3").getText().then(function (text) {
return text === "Assigned employee";
});
}).$$("p").getText().then(function (text) {
return text == assignedEmployee;
})).toBe(true);
},
verifyCreatedByForTellerIs: function(createdBy){
expect($$("fims-layout-card-over .mat-list-text").filter(function (elem, index) {
return elem.$("h3").getText().then(function (text) {
return text === "Assigned employee";
});
}).$$("p").getText().then(function (text) {
return text == assignedEmployee;
})).toBe(true);
},
viewTellerBalanceForTellerInOffice: function(tellerIdentifier, officeIdentifier){
link = "/offices/detail/" + officeIdentifier + "/tellers/detail/" + tellerIdentifier + "/balance";
browser.wait(EC.visibilityOf($("a[href='"+link+"']")), 2000);
$("a[href='"+link+"']").click();
},
verifyTellerTransactionMessageForRow: function(message, row) {
browser.wait(EC.visibilityOf($("table tbody")), 3000);
expect($$("table tbody tr").get(row - 1).$$(".td-data-table-cell").get(1).getText()).toEqual(message);
},
verifyTellerCreditTransactionAmountForRow: function(amount, row) {
browser.wait(EC.visibilityOf($("table tbody")), 3000);
expect($$("table tbody tr").get(row - 1).$$(".td-data-table-cell").get(3).getText()).toEqual(amount);
},
verifyTellerDebitTransactionAmountForRow: function(amount, row) {
browser.wait(EC.visibilityOf($("table tbody")), 3000);
expect($$("table tbody tr").get(row - 1).$$(".td-data-table-cell").get(2).getText()).toEqual(amount);
},
}