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 = '#!/'; describe('Edit fiscalData path', () => { describe('warm up', () => { it('should warm up login and fixtures', done => { nightmare .login() .waitForURL(moduleAccessViewHashURL) .waitToClick(selectors.globalItems.logOutButton) .then(() => { done(); }) .catch(catchErrors(done)); }); }); it('should log in', done => { nightmare .login() .waitForURL(moduleAccessViewHashURL) .url() .then(url => { expect(url).toBe(config.url + moduleAccessViewHashURL); 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).toBe(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).toBe(1); done(); }) .catch(catchErrors(done)); }); it(`should click on the search result to access to the client's fiscal data`, done => { nightmare .waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Banner') .waitToClick(selectors.clientsIndex.searchResult) .waitToClick(selectors.fiscalData.fiscalDataButton) .waitForURL('fiscal-data') .url() .then(url => { expect(url).toContain('fiscal-data'); done(); }) .catch(catchErrors(done)); }); it(`should uncheck the hasToInvoice checkbox`, done => { nightmare .waitToClick(selectors.fiscalData.hastToInvoiceCheckboxLabel) .waitToClick(selectors.fiscalData.saveButton) .wait(selectors.globalItems.snackbarIsActive) .getInnerText(selectors.globalItems.snackbarIsActive) .then(result => { expect(result).toBe('¡Datos guardados!'); done(); }) .catch(catchErrors(done)); }); it(`should confirm hasToInvoice checkbox is unchecked`, done => { nightmare .waitForSnackbarReset() .waitToClick(selectors.basicData.basicDataButton) .wait(selectors.basicData.nameInput) .waitToClick(selectors.fiscalData.fiscalDataButton) .wait(selectors.fiscalData.hastToInvoiceCheckboxLabel) .evaluate(selector => { return document.querySelector(selector).checked; }, selectors.fiscalData.hastToInvoiceCheckboxInput) .then(value => { expect(value).toBeFalsy(); done(); }) .catch(catchErrors(done)); }); });