import config from '../helpers/config.js'; import createNightmare from '../helpers/nightmare'; import selectors from '../helpers/selectors.js'; import {catchErrors} from '../../services/utils/jasmineHelpers'; const nightmare = createNightmare(); const moduleAccessViewHashURL = '#!/'; jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000; describe('Edit pay method path', () => { it('should log in', done => { nightmare .login() .waitForURL(moduleAccessViewHashURL) .url() .then(url => { expect(url).toEqual(config.url + moduleAccessViewHashURL); done(); }) .catch(catchErrors(done)); }); it('should make sure the language is English', done => { nightmare .changeLanguageToEnglish() .then(() => { done(); }) .catch(catchErrors(done)); }); it('should click on the Clients button of the top bar menu', done => { nightmare .waitToClick(selectors.globalItems.applicationsMenuButton) .wait(selectors.globalItems.applicationsMenuVisible) .waitToClick(selectors.globalItems.clientsButton) .wait(selectors.clientsIndex.createClientButton) .url() .then(url => { expect(url).toEqual(config.url + '#!/clients'); done(); }) .catch(catchErrors(done)); }); it('should search for the user Bruce Banner', done => { nightmare .wait(selectors.clientsIndex.searchResult) .type(selectors.clientsIndex.searchClientInput, 'Bruce Banner') .click(selectors.clientsIndex.searchButton) .waitForNumberOfElements(selectors.clientsIndex.searchResult, 1) .countSearchResults(selectors.clientsIndex.searchResult) .then(result => { expect(result).toEqual(1); done(); }) .catch(catchErrors(done)); }); it(`should click on the search result to access to the client's pay method`, done => { nightmare .waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Banner') .waitToClick(selectors.clientsIndex.searchResult) .waitToClick(selectors.payMethod.payMethodButton) .waitForURL('billing-data') .url() .then(url => { expect(url).toContain('billing-data'); done(); }) .catch(catchErrors(done)); }); it(`should edit the Pay method to any without IBAN`, done => { nightmare .waitToClick(selectors.payMethod.payMethodInput) .waitToClick(selectors.payMethod.payMethodOptionOne) .wait(200) .waitToClick(selectors.payMethod.saveButton) .waitToClick(selectors.payMethod.cancelNotificationButton) .wait(selectors.globalItems.snackbarIsActive) .getInnerText(selectors.globalItems.snackbarIsActive) .then(result => { expect(result).toEqual('Data saved!'); done(); }) .catch(catchErrors(done)); }); it(`should confirm the Pay method have been selected`, done => { nightmare .waitForSnackbarReset() .click(selectors.basicData.basicDataButton) .wait(selectors.basicData.nameInput) .click(selectors.payMethod.payMethodButton) .wait(200) .getInputValue(selectors.payMethod.payMethodInput) .then(result => { expect(result).toEqual('PayMethod one'); done(); }) .catch(catchErrors(done)); }); it(`should receive an error when changing payMethod to IBAN without an IBAN entered`, done => { nightmare .waitToClick(selectors.payMethod.payMethodInput) .waitToClick(selectors.payMethod.payMethodIBANOption) .wait(200) .waitToClick(selectors.payMethod.saveButton) .waitToClick(selectors.payMethod.cancelNotificationButton) .wait(selectors.globalItems.snackbarIsActive) .getInnerText(selectors.globalItems.snackbarIsActive) .then(result => { expect(result).toContain('Error'); done(); }) .catch(catchErrors(done)); }); it(`should add the IBAN`, done => { nightmare .clearInput(selectors.payMethod.IBANInput) .type(selectors.payMethod.IBANInput, 'ES91 2100 0418 4502 0005 1332') .waitToClick(selectors.payMethod.saveButton) .waitToClick(selectors.payMethod.cancelNotificationButton) .wait(selectors.globalItems.snackbarIsActive) .getInnerText(selectors.globalItems.snackbarIsActive) .then(result => { expect(result).toEqual('Data saved!'); done(); }) .catch(catchErrors(done)); }); it(`should confirm the IBAN pay method is sucessfully saved`, done => { nightmare .waitForSnackbarReset() .click(selectors.basicData.basicDataButton) .wait(selectors.basicData.nameInput) .click(selectors.payMethod.payMethodButton) .wait(200) .getInputValue(selectors.payMethod.payMethodInput) .then(result => { expect(result).toEqual('PayMethod with IBAN'); done(); }) .catch(catchErrors(done)); }); it(`should edit the due day`, done => { nightmare .clearInput(selectors.payMethod.dueDayInput) .type(selectors.payMethod.dueDayInput, '60') .waitToClick(selectors.payMethod.saveButton) .waitToClick(selectors.payMethod.cancelNotificationButton) .wait(selectors.globalItems.snackbarIsActive) .getInnerText(selectors.globalItems.snackbarIsActive) .then(result => { expect(result).toEqual('Data saved!'); done(); }) .catch(catchErrors(done)); }); it('should confirm the due day have been edited', done => { nightmare .waitForSnackbarReset() .waitToClick(selectors.basicData.basicDataButton) .wait(selectors.basicData.nameInput) .waitToClick(selectors.payMethod.payMethodButton) .wait(selectors.payMethod.dueDayInput) .getInputValue(selectors.payMethod.dueDayInput) .then(result => { expect(result).toEqual('60'); done(); }) .catch(catchErrors(done)); }); it('should uncheck the Received core VNH checkbox', done => { nightmare .waitToClick(selectors.payMethod.receivedCoreVNHCheckbox) .waitToClick(selectors.payMethod.saveButton) .wait(selectors.globalItems.snackbarIsActive) .getInnerText(selectors.globalItems.snackbarIsActive) .then(result => { expect(result).toEqual('Data saved!'); done(); }) .catch(catchErrors(done)); }); it('should confirm Received core VNH checkbox is unchecked', done => { nightmare .waitForSnackbarReset() .waitToClick(selectors.basicData.basicDataButton) .wait(selectors.basicData.nameInput) .waitToClick(selectors.payMethod.payMethodButton) .wait(selectors.payMethod.receivedCoreVNHCheckbox) .evaluate(selector => { return document.querySelector(selector).checked; }, selectors.payMethod.receivedCoreVNHCheckbox) .then(value => { expect(value).toBeFalsy(); done(); }) .catch(catchErrors(done)); }); it('should uncheck the Received core VNL checkbox', done => { nightmare .waitToClick(selectors.payMethod.receivedCoreVNLCheckbox) .waitToClick(selectors.payMethod.saveButton) .wait(selectors.globalItems.snackbarIsActive) .getInnerText(selectors.globalItems.snackbarIsActive) .then(result => { expect(result).toEqual('Data saved!'); done(); }) .catch(catchErrors(done)); }); it('should confirm Received core VNL checkbox is unchecked', done => { nightmare .waitForSnackbarReset() .waitToClick(selectors.basicData.basicDataButton) .wait(selectors.basicData.nameInput) .waitToClick(selectors.payMethod.payMethodButton) .wait(selectors.payMethod.receivedCoreVNLCheckbox) .evaluate(selector => { return document.querySelector(selector).checked; }, selectors.payMethod.receivedCoreVNLCheckbox) .then(value => { expect(value).toBeFalsy(); done(); }) .catch(catchErrors(done)); }); it('should uncheck the Received B2B VNL checkbox', done => { nightmare .waitToClick(selectors.payMethod.receivedB2BVNLCheckbox) .waitToClick(selectors.payMethod.saveButton) .wait(selectors.globalItems.snackbarIsActive) .getInnerText(selectors.globalItems.snackbarIsActive) .then(result => { expect(result).toEqual('Data saved!'); done(); }) .catch(catchErrors(done)); }); it('should confirm Received B2B VNL checkbox is unchecked', done => { nightmare .waitForSnackbarReset() .waitToClick(selectors.basicData.basicDataButton) .wait(selectors.basicData.nameInput) .waitToClick(selectors.payMethod.payMethodButton) .wait(selectors.payMethod.receivedB2BVNLCheckbox) .evaluate(selector => { return document.querySelector(selector).checked; }, selectors.payMethod.receivedB2BVNLCheckbox) .then(value => { expect(value).toBeFalsy(); done(); }) .catch(catchErrors(done)); }); });