2018-02-15 11:28:05 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
2018-02-20 09:00:19 +00:00
|
|
|
import createNightmare from '../../helpers/helpers';
|
2017-12-13 10:25:50 +00:00
|
|
|
|
2017-11-03 17:32:58 +00:00
|
|
|
describe('Edit basicData path', () => {
|
2018-02-20 09:00:19 +00:00
|
|
|
const nightmare = createNightmare();
|
2017-11-03 17:32:58 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should click on the Clients button of the top bar menu', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
2018-02-20 21:35:54 +00:00
|
|
|
.parsedUrl()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(url => {
|
2018-02-20 09:00:19 +00:00
|
|
|
expect(url.hash).toEqual('#!/clients');
|
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should search for the user Bruce Wayne', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Bruce Wayne')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
.then(result => {
|
2017-11-08 14:43:34 +00:00
|
|
|
expect(result).toEqual(1);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should click on the search result to access to the clients basic data', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Wayne')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitForURL('basic-data')
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toContain('basic-data');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should edit the name', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.wait(selectors.clientBasicData.nameInput)
|
|
|
|
.clearInput(selectors.clientBasicData.nameInput)
|
|
|
|
.type(selectors.clientBasicData.nameInput, 'Ororo Munroe')
|
|
|
|
.click(selectors.clientBasicData.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-07 14:40:16 +00:00
|
|
|
expect(result).toEqual('Data saved!');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should confirm the name have been edited', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.click(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.addressInput)
|
|
|
|
.click(selectors.clientBasicData.basicDataButton)
|
|
|
|
.wait(selectors.clientBasicData.nameInput)
|
|
|
|
.getInputValue(selectors.clientBasicData.nameInput)
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-05 14:28:48 +00:00
|
|
|
expect(result).toEqual('Ororo Munroe');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should edit the contact name', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.wait(selectors.clientBasicData.contactInput)
|
|
|
|
.clearInput(selectors.clientBasicData.contactInput)
|
|
|
|
.type(selectors.clientBasicData.contactInput, 'Black Panther')
|
|
|
|
.click(selectors.clientBasicData.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-07 14:40:16 +00:00
|
|
|
expect(result).toEqual('Data saved!');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should confirm the contact name have been edited', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.click(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.addressInput)
|
|
|
|
.click(selectors.clientBasicData.basicDataButton)
|
|
|
|
.wait(selectors.clientBasicData.contactInput)
|
|
|
|
.getInputValue(selectors.clientBasicData.contactInput)
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-05 14:28:48 +00:00
|
|
|
expect(result).toEqual('Black Panther');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should add the landline phone number', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.wait(selectors.clientBasicData.phoneInput)
|
|
|
|
.clearInput(selectors.clientBasicData.phoneInput)
|
|
|
|
.type(selectors.clientBasicData.phoneInput, '123456789')
|
|
|
|
.click(selectors.clientBasicData.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-07 14:40:16 +00:00
|
|
|
expect(result).toEqual('Data saved!');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should confirm the landline phone number have been added', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.click(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.addressInput)
|
|
|
|
.click(selectors.clientBasicData.basicDataButton)
|
|
|
|
.wait(selectors.clientBasicData.phoneInput)
|
|
|
|
.getInputValue(selectors.clientBasicData.phoneInput)
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-11-08 14:43:34 +00:00
|
|
|
expect(result).toEqual('123456789');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should add the mobile phone number', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.wait(selectors.clientBasicData.mobileInput)
|
|
|
|
.clearInput(selectors.clientBasicData.mobileInput)
|
|
|
|
.type(selectors.clientBasicData.mobileInput, '987654321')
|
|
|
|
.click(selectors.clientBasicData.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-07 14:40:16 +00:00
|
|
|
expect(result).toEqual('Data saved!');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should confirm the mobile phone number have been added', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.click(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.addressInput)
|
|
|
|
.click(selectors.clientBasicData.basicDataButton)
|
|
|
|
.wait(selectors.clientBasicData.mobileInput)
|
|
|
|
.getInputValue(selectors.clientBasicData.mobileInput)
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-11-08 14:43:34 +00:00
|
|
|
expect(result).toEqual('987654321');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should edit the email', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.wait(selectors.clientBasicData.emailInput)
|
|
|
|
.clearInput(selectors.clientBasicData.emailInput)
|
|
|
|
.type(selectors.clientBasicData.emailInput, 'Storm@verdnatura.es')
|
|
|
|
.click(selectors.clientBasicData.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-07 14:40:16 +00:00
|
|
|
expect(result).toEqual('Data saved!');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should confirm the email have been edited', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.click(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.addressInput)
|
|
|
|
.click(selectors.clientBasicData.basicDataButton)
|
|
|
|
.wait(selectors.clientBasicData.emailInput)
|
|
|
|
.getInputValue(selectors.clientBasicData.emailInput)
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-05 14:28:48 +00:00
|
|
|
expect(result).toEqual('Storm@verdnatura.es');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-22 09:03:58 +00:00
|
|
|
it('should select the sales person first option', () => {
|
2018-02-20 09:00:19 +00:00
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.waitToClick(selectors.clientBasicData.salesPersonInput)
|
2018-02-22 09:03:58 +00:00
|
|
|
.waitToClick(selectors.clientBasicData.salesPersonOptionOne)
|
2017-12-07 12:35:40 +00:00
|
|
|
.wait(200)
|
2018-02-15 11:28:05 +00:00
|
|
|
.waitToClick(selectors.clientBasicData.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-07 14:40:16 +00:00
|
|
|
expect(result).toEqual('Data saved!');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should confirm the sales person have been selected', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.addressInput)
|
|
|
|
.waitToClick(selectors.clientBasicData.basicDataButton)
|
2017-12-07 12:35:40 +00:00
|
|
|
.wait(200)
|
2018-02-15 11:28:05 +00:00
|
|
|
.getInputValue(selectors.clientBasicData.salesPersonInput)
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2018-02-22 09:03:58 +00:00
|
|
|
expect(result).toEqual('account account');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should select the channel', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.waitToClick(selectors.clientBasicData.channelInput)
|
|
|
|
.waitToClick(selectors.clientBasicData.channelMetropolisOption)
|
2017-12-07 12:35:40 +00:00
|
|
|
.wait(400)
|
2018-02-15 11:28:05 +00:00
|
|
|
.waitToClick(selectors.clientBasicData.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-07 14:40:16 +00:00
|
|
|
expect(result).toEqual('Data saved!');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should confirm the channel have been selected', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.addressInput)
|
|
|
|
.waitToClick(selectors.clientBasicData.basicDataButton)
|
2017-12-07 12:35:40 +00:00
|
|
|
.wait(400)
|
2018-02-15 11:28:05 +00:00
|
|
|
.getInputValue(selectors.clientBasicData.channelInput)
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-11-08 14:43:34 +00:00
|
|
|
expect(result).toEqual('Metropolis newspaper');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
});
|