2017-09-15 10:24:37 +00:00
|
|
|
import config from '../helpers/config.js';
|
|
|
|
import createNightmare from '../helpers/nightmare';
|
|
|
|
import selectors from '../helpers/selectors.js';
|
2017-09-17 16:09:59 +00:00
|
|
|
import {catchErrors} from '../../services/utils/jasmineHelpers';
|
2017-09-11 14:12:32 +00:00
|
|
|
const nightmare = createNightmare();
|
2017-09-18 15:28:47 +00:00
|
|
|
const moduleAccessViewHashURL = '#!/';
|
2017-10-29 18:43:39 +00:00
|
|
|
|
|
|
|
describe('warm up', () => {
|
|
|
|
it('should warm up login and fixtures', done => {
|
|
|
|
nightmare
|
|
|
|
.login()
|
|
|
|
.waitForURL(moduleAccessViewHashURL)
|
|
|
|
.waitToClick(selectors.globalItems.logOutButton)
|
|
|
|
.then(() => {
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
|
2017-10-29 17:52:21 +00:00
|
|
|
describe('Clients path', () => {
|
2017-10-29 14:49:44 +00:00
|
|
|
describe('Create', () => {
|
|
|
|
it('should log in', done => {
|
|
|
|
nightmare
|
|
|
|
.login()
|
|
|
|
.waitForURL(moduleAccessViewHashURL)
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toBe(config.url + moduleAccessViewHashURL);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should access to the clients index by clicking the clients button', done => {
|
|
|
|
nightmare
|
|
|
|
.click(selectors.moduleAccessView.clientsSectionButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toBe(config.url + '#!/clients');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it(`should search for the user Carol Danvers to confirm it isn't created yet`, done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Carol Danvers')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 0)
|
|
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(0);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-18 11:03:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should access to the create client view by clicking the create-client floating button', done => {
|
|
|
|
nightmare
|
|
|
|
.click(selectors.clientsIndex.createClientButton)
|
|
|
|
.wait(selectors.createClientView.createButton)
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toBe(config.url + '#!/create');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty', done => {
|
|
|
|
nightmare
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe('No hay cambios que guardar');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but name', done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.type(selectors.createClientView.name, 'Carol Danvers')
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain(`Error: La instancia`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but Tax Number', done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.clearInput(selectors.createClientView.name)
|
2017-10-30 14:37:35 +00:00
|
|
|
.type(selectors.createClientView.taxNumber, 'AVG tax')
|
2017-10-29 14:49:44 +00:00
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain(`Error: La instancia`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but Business Name', done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.clearInput(selectors.createClientView.taxNumber)
|
|
|
|
.type(selectors.createClientView.businessName, 'Avengers team')
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain(`Error: La instancia`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but User Name', done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.clearInput(selectors.createClientView.businessName)
|
|
|
|
.type(selectors.createClientView.userName, 'CaptainMarvel')
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain(`Error: La instancia`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but email while email have incorrect format', done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.clearInput(selectors.createClientView.userName)
|
|
|
|
.type(selectors.createClientView.email, 'I will save the Avengers!')
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`Algunos campos no son válidos`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but email', done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.clearInput(selectors.createClientView.email)
|
|
|
|
.type(selectors.createClientView.email, 'CarolDanvers@verdnatura.es')
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain(`Error: La instancia`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-30 14:37:35 +00:00
|
|
|
it(`should create a new user with all it's data`, done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.wait(selectors.createClientView.email)
|
|
|
|
.clearInput(selectors.createClientView.email)
|
|
|
|
.type(selectors.createClientView.name, 'Carol Danvers')
|
|
|
|
.type(selectors.createClientView.taxNumber, 'Avengers Tax Number')
|
|
|
|
.type(selectors.createClientView.businessName, 'Avengers Team')
|
|
|
|
.type(selectors.createClientView.userName, 'CaptainMarvel')
|
|
|
|
.type(selectors.createClientView.email, 'CarolDanvers@verdnatura.es')
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain(`¡Datos guardados!`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
});
|
2017-09-17 18:43:55 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
describe('Index', () => {
|
2017-10-30 14:37:35 +00:00
|
|
|
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 Carol Danvers to confirm it exists`, done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Carol Danvers')
|
|
|
|
.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 basic data`, done => {
|
|
|
|
nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Carol')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitForURL('basic-data')
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toContain('basic-data');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should edit the name`, done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.basicData.nameInput)
|
|
|
|
.clearInput(selectors.basicData.nameInput)
|
|
|
|
.type(selectors.basicData.nameInput, 'Carol Danvers Edited')
|
|
|
|
.click(selectors.basicData.saveButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`¡Datos guardados!`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-31 07:14:33 +00:00
|
|
|
it(`should confirm the name have been edited`, done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.click(selectors.fiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.fiscalData.addressInput)
|
|
|
|
.click(selectors.basicData.basicDataButton)
|
|
|
|
.wait(selectors.basicData.nameInput)
|
|
|
|
.getInputValue(selectors.basicData.nameInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`Carol Danvers Edited`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-30 14:37:35 +00:00
|
|
|
it(`should edit the tax number`, done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.basicData.taxNumberInput)
|
|
|
|
.clearInput(selectors.basicData.taxNumberInput)
|
|
|
|
.type(selectors.basicData.taxNumberInput, 'AVG tax Edited')
|
|
|
|
.click(selectors.basicData.saveButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`¡Datos guardados!`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-31 11:00:46 +00:00
|
|
|
it(`should confirm the tax number have been edited`, done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.click(selectors.fiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.fiscalData.addressInput)
|
|
|
|
.click(selectors.basicData.basicDataButton)
|
|
|
|
.wait(selectors.basicData.taxNumberInput)
|
|
|
|
.getInputValue(selectors.basicData.taxNumberInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`AVG tax Edited`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-30 14:37:35 +00:00
|
|
|
it(`should edit the social name`, done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.basicData.socialNameInput)
|
|
|
|
.clearInput(selectors.basicData.socialNameInput)
|
|
|
|
.type(selectors.basicData.socialNameInput, 'Avengers Team Edited')
|
|
|
|
.click(selectors.basicData.saveButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`¡Datos guardados!`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-31 11:00:46 +00:00
|
|
|
it(`should confirm the social name have been edited`, done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.click(selectors.fiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.fiscalData.addressInput)
|
|
|
|
.click(selectors.basicData.basicDataButton)
|
|
|
|
.wait(selectors.basicData.socialNameInput)
|
|
|
|
.getInputValue(selectors.basicData.socialNameInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`Avengers Team Edited`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-30 14:37:35 +00:00
|
|
|
it(`should add the landline phone number`, done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.basicData.phoneInput)
|
|
|
|
.type(selectors.basicData.phoneInput, '123456789')
|
|
|
|
.click(selectors.basicData.saveButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`¡Datos guardados!`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-31 11:00:46 +00:00
|
|
|
it(`should confirm the landline phone number have been added`, done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.click(selectors.fiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.fiscalData.addressInput)
|
|
|
|
.click(selectors.basicData.basicDataButton)
|
|
|
|
.wait(selectors.basicData.phoneInput)
|
|
|
|
.getInputValue(selectors.basicData.phoneInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe('123456789');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-30 14:37:35 +00:00
|
|
|
it(`should add the mobile phone number`, done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.basicData.mobileInput)
|
|
|
|
.type(selectors.basicData.mobileInput, '987654321')
|
|
|
|
.click(selectors.basicData.saveButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`¡Datos guardados!`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-31 11:00:46 +00:00
|
|
|
it(`should confirm the mobile phone number have been added`, done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.click(selectors.fiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.fiscalData.addressInput)
|
|
|
|
.click(selectors.basicData.basicDataButton)
|
|
|
|
.wait(selectors.basicData.mobileInput)
|
|
|
|
.getInputValue(selectors.basicData.mobileInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe('987654321');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-30 14:37:35 +00:00
|
|
|
it(`should add the fax number`, done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.basicData.faxInput)
|
|
|
|
.type(selectors.basicData.faxInput, '432198765')
|
|
|
|
.click(selectors.basicData.saveButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`¡Datos guardados!`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-31 11:00:46 +00:00
|
|
|
it(`should confirm the fax number have been added`, done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.click(selectors.fiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.fiscalData.addressInput)
|
|
|
|
.click(selectors.basicData.basicDataButton)
|
|
|
|
.wait(selectors.basicData.faxInput)
|
|
|
|
.getInputValue(selectors.basicData.faxInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe('432198765');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-30 14:37:35 +00:00
|
|
|
it(`should edit the email`, done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.basicData.emailInput)
|
|
|
|
.clearInput(selectors.basicData.emailInput)
|
|
|
|
.type(selectors.basicData.emailInput, 'CarolDanversEdited@verdnatura.es')
|
|
|
|
.click(selectors.basicData.saveButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`¡Datos guardados!`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-10-29 17:52:21 +00:00
|
|
|
|
2017-10-31 11:00:46 +00:00
|
|
|
it(`should confirm the email have been edited`, done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.click(selectors.fiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.fiscalData.addressInput)
|
|
|
|
.click(selectors.basicData.basicDataButton)
|
|
|
|
.wait(selectors.basicData.emailInput)
|
|
|
|
.getInputValue(selectors.basicData.emailInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe('CarolDanversEdited@verdnatura.es');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-10-30 14:37:35 +00:00
|
|
|
// it(`should select the sales person`, done => {
|
2017-10-29 17:52:21 +00:00
|
|
|
// nightmare
|
2017-10-30 14:37:35 +00:00
|
|
|
// .wait(selectors.basicData.salesPersonInput)
|
|
|
|
// .select(selectors.basicData.salesPersonInput, '') // not working quite yet
|
|
|
|
// .click(selectors.basicData.saveButton)
|
|
|
|
// .wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
// .getInnerText(selectors.globalItems.snackbarIsActive)
|
2017-10-29 17:52:21 +00:00
|
|
|
// .then(result => {
|
2017-10-30 14:37:35 +00:00
|
|
|
// expect(result).toBe(`¡Datos guardados!`);
|
2017-10-29 17:52:21 +00:00
|
|
|
// done();
|
|
|
|
// })
|
|
|
|
// .catch(catchErrors(done));
|
|
|
|
// });
|
|
|
|
|
2017-10-30 14:37:35 +00:00
|
|
|
it(`should select the channel`, done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.basicData.channelInput)
|
2017-10-31 11:00:46 +00:00
|
|
|
.click(selectors.basicData.channelInput)
|
|
|
|
.click(selectors.basicData.channelInput)
|
|
|
|
.waitToClick('body > vn-app > vn-vertical > vn-vertical > vn-client-card > vn-horizontal > vn-auto > vn-vertical > vn-client-basic-data > form > vn-card > div > vn-vertical > vn-horizontal:nth-child(4) > vn-autocomplete:nth-child(3) > vn-vertical > vn-drop-down > vn-vertical > vn-one:nth-child(2) > ul > li:nth-child(3)')
|
2017-10-30 14:37:35 +00:00
|
|
|
.click(selectors.basicData.saveButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(`¡Datos guardados!`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-10-31 11:00:46 +00:00
|
|
|
|
|
|
|
it(`should confirm the channe; have been selected`, done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.click(selectors.fiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.fiscalData.addressInput)
|
|
|
|
.click(selectors.basicData.basicDataButton)
|
|
|
|
.wait(selectors.basicData.channelInput)
|
|
|
|
.getInputValue(selectors.basicData.channelInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe('Metropolis newspaper');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-10-29 14:49:44 +00:00
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
});
|