2018-03-02 13:45:22 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
|
|
|
import createNightmare from '../../helpers/helpers';
|
|
|
|
|
2018-03-12 10:17:06 +00:00
|
|
|
describe('lock verified data path', () => {
|
2018-03-02 13:45:22 +00:00
|
|
|
const nightmare = createNightmare();
|
|
|
|
|
|
|
|
describe('as salesPerson', () => {
|
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
|
|
|
.waitForLogin('salesPerson');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should click on the Clients button of the top bar menu', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toEqual('#!/clients');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should search for the user Petter Parker', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Petter Parker')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click on the search result to access to the client's fiscal data`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Petter Parker')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.waitForURL('fiscal-data')
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toContain('fiscal-data');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click on the fiscal data button to start editing`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.waitForURL('fiscal-data')
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toContain('fiscal-data');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should confirm verified data button is disabled for salesPerson', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientFiscalData.verifiedDataCheckboxInput)
|
|
|
|
.evaluate(selector => {
|
|
|
|
return document.querySelector(selector).className;
|
|
|
|
}, 'body > vn-app > vn-vertical > vn-vertical > vn-client-card > vn-main-block > vn-horizontal > vn-one > vn-vertical > vn-client-fiscal-data > form > vn-card > div > vn-horizontal:nth-child(5) > vn-check:nth-child(3) > label')
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain('is-disabled');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should edit the social name', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.clearInput(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.type(selectors.clientFiscalData.socialNameInput, 'salesPerson was here')
|
|
|
|
.click(selectors.clientFiscalData.saveButton)
|
|
|
|
.waitForSnackbar()
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should confirm the social name have been edited', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientBasicData.basicDataButton)
|
|
|
|
.wait(selectors.clientBasicData.nameInput)
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.getInputValue(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual('salesPerson was here');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('as administrative', () => {
|
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.globalItems.logOutButton)
|
|
|
|
.waitForLogin('administrative');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should navigate to clients index', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toEqual('#!/clients');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should search again for the user Petter Parker', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Petter Parker')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click on the search result to access to the Petter Parkers fiscal data`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Petter Parker')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.waitForURL('fiscal-data')
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toContain('fiscal-data');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click on the fiscal data button`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.waitForURL('fiscal-data')
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toContain('fiscal-data');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should confirm verified data button is enabled for administrative', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientFiscalData.verifiedDataCheckboxInput)
|
|
|
|
.evaluate(selector => {
|
|
|
|
return document.querySelector(selector).className;
|
|
|
|
}, 'body > vn-app > vn-vertical > vn-vertical > vn-client-card > vn-main-block > vn-horizontal > vn-one > vn-vertical > vn-client-fiscal-data > form > vn-card > div > vn-horizontal:nth-child(5) > vn-check:nth-child(3) > label')
|
|
|
|
.then(result => {
|
|
|
|
expect(result).not.toContain('is-disabled');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should check the Verified data checkbox', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientFiscalData.verifiedDataCheckboxInput)
|
|
|
|
.waitToClick(selectors.clientFiscalData.saveButton)
|
|
|
|
.waitForSnackbar()
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should confirm Verified data checkbox is checked', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientBasicData.basicDataButton)
|
|
|
|
.wait(selectors.clientBasicData.nameInput)
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.verifiedDataCheckboxInput)
|
|
|
|
.evaluate(selector => {
|
|
|
|
return document.querySelector(selector).checked;
|
|
|
|
}, selectors.clientFiscalData.verifiedDataCheckboxInput)
|
|
|
|
.then(value => {
|
|
|
|
expect(value).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should again edit the social name', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.clearInput(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.type(selectors.clientFiscalData.socialNameInput, 'administrative was here')
|
|
|
|
.click(selectors.clientFiscalData.saveButton)
|
|
|
|
.waitForSnackbar()
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should confirm the social name have been edited once and for all', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientBasicData.basicDataButton)
|
|
|
|
.wait(selectors.clientBasicData.nameInput)
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.getInputValue(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual('administrative was here');
|
|
|
|
});
|
|
|
|
});
|
2018-03-05 11:28:59 +00:00
|
|
|
});
|
2018-03-02 13:45:22 +00:00
|
|
|
|
2018-03-05 11:28:59 +00:00
|
|
|
describe('as salesPerson second run', () => {
|
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.globalItems.logOutButton)
|
|
|
|
.waitForLogin('salesPerson');
|
|
|
|
});
|
2018-03-02 13:45:22 +00:00
|
|
|
|
2018-03-05 11:28:59 +00:00
|
|
|
it('should again click on the Clients button of the top bar menu', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toEqual('#!/clients');
|
2018-03-02 13:45:22 +00:00
|
|
|
});
|
2018-03-05 11:28:59 +00:00
|
|
|
});
|
2018-03-02 13:45:22 +00:00
|
|
|
|
2018-03-05 11:28:59 +00:00
|
|
|
it('should again search for the user Petter Parker', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Petter Parker')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
2018-03-02 13:45:22 +00:00
|
|
|
});
|
2018-03-05 11:28:59 +00:00
|
|
|
});
|
2018-03-02 13:45:22 +00:00
|
|
|
|
2018-03-05 11:28:59 +00:00
|
|
|
it(`should click on the search result to access to the client's fiscal data`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Petter Parker')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.waitForURL('fiscal-data')
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toContain('fiscal-data');
|
2018-03-02 13:45:22 +00:00
|
|
|
});
|
2018-03-05 11:28:59 +00:00
|
|
|
});
|
2018-03-02 13:45:22 +00:00
|
|
|
|
2018-03-05 11:28:59 +00:00
|
|
|
it(`should click on the fiscal data button to start editing`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.waitForURL('fiscal-data')
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toContain('fiscal-data');
|
2018-03-02 13:45:22 +00:00
|
|
|
});
|
2018-03-05 11:28:59 +00:00
|
|
|
});
|
2018-03-02 13:45:22 +00:00
|
|
|
|
2018-03-05 11:28:59 +00:00
|
|
|
it('should confirm verified data button is disabled once again for salesPerson', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientFiscalData.verifiedDataCheckboxInput)
|
|
|
|
.evaluate(selector => {
|
|
|
|
return document.querySelector(selector).className;
|
|
|
|
}, 'body > vn-app > vn-vertical > vn-vertical > vn-client-card > vn-main-block > vn-horizontal > vn-one > vn-vertical > vn-client-fiscal-data > form > vn-card > div > vn-horizontal:nth-child(5) > vn-check:nth-child(3) > label')
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain('is-disabled');
|
2018-03-02 13:45:22 +00:00
|
|
|
});
|
2018-03-05 11:28:59 +00:00
|
|
|
});
|
2018-03-02 13:45:22 +00:00
|
|
|
|
2018-03-05 11:28:59 +00:00
|
|
|
it('should confirm the form have been disabled for salesPerson', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.evaluate(selector => {
|
|
|
|
return document.querySelector(selector).className;
|
|
|
|
}, 'vn-textfield[field="$ctrl.client.socialName"] > div')
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain('is-disabled');
|
2018-03-02 13:45:22 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-03-12 10:10:05 +00:00
|
|
|
|
|
|
|
describe('as salesAssistant', () => {
|
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.globalItems.logOutButton)
|
|
|
|
.waitForLogin('salesAssistant');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should navigate to clients index', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toEqual('#!/clients');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should search again for the user Petter Parker', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Petter Parker')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click on the search result to access to the Petter Parkers fiscal data`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Petter Parker')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.waitForURL('fiscal-data')
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toContain('fiscal-data');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click on the fiscal data button`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.waitForURL('fiscal-data')
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toContain('fiscal-data');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should confirm verified data button is enabled for salesAssistant', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientFiscalData.verifiedDataCheckboxInput)
|
|
|
|
.evaluate(selector => {
|
|
|
|
return document.querySelector(selector).className;
|
|
|
|
}, 'body > vn-app > vn-vertical > vn-vertical > vn-client-card > vn-main-block > vn-horizontal > vn-one > vn-vertical > vn-client-fiscal-data > form > vn-card > div > vn-horizontal:nth-child(5) > vn-check:nth-child(3) > label')
|
|
|
|
.then(result => {
|
|
|
|
expect(result).not.toContain('is-disabled');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should uncheck the Verified data checkbox', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientFiscalData.verifiedDataCheckboxInput)
|
|
|
|
.waitToClick(selectors.clientFiscalData.saveButton)
|
|
|
|
.waitForSnackbar()
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should confirm Verified data checkbox is unchecked', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientBasicData.basicDataButton)
|
|
|
|
.wait(selectors.clientBasicData.nameInput)
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.verifiedDataCheckboxInput)
|
|
|
|
.evaluate(selector => {
|
|
|
|
return document.querySelector(selector).checked;
|
|
|
|
}, selectors.clientFiscalData.verifiedDataCheckboxInput)
|
|
|
|
.then(value => {
|
|
|
|
expect(value).toBeFalsy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should again edit the social name', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.clearInput(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.type(selectors.clientFiscalData.socialNameInput, 'salesAssistant was here')
|
|
|
|
.click(selectors.clientFiscalData.saveButton)
|
|
|
|
.waitForSnackbar()
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should confirm the social name have been edited once and for all', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientBasicData.basicDataButton)
|
|
|
|
.wait(selectors.clientBasicData.nameInput)
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.getInputValue(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual('salesAssistant was here');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('as salesPerson third run', () => {
|
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.globalItems.logOutButton)
|
|
|
|
.waitForLogin('salesPerson');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should again click on the Clients button of the top bar menu', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toEqual('#!/clients');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should once again search for the user Petter Parker', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Petter Parker')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click on the search result to access to the client's fiscal data`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Petter Parker')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.waitForURL('fiscal-data')
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toContain('fiscal-data');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click on the fiscal data button to start editing`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.waitForURL('fiscal-data')
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toContain('fiscal-data');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should confirm verified data button is enabled once again', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientFiscalData.verifiedDataCheckboxInput)
|
|
|
|
.evaluate(selector => {
|
|
|
|
return document.querySelector(selector).className;
|
|
|
|
}, 'body > vn-app > vn-vertical > vn-vertical > vn-client-card > vn-main-block > vn-horizontal > vn-one > vn-vertical > vn-client-fiscal-data > form > vn-card > div > vn-horizontal:nth-child(5) > vn-check:nth-child(3) > label')
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain('is-disabled');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should confirm the form is enabled for salesPerson', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientFiscalData.socialNameInput)
|
|
|
|
.evaluate(selector => {
|
|
|
|
return document.querySelector(selector).className;
|
|
|
|
}, 'vn-textfield[field="$ctrl.client.socialName"] > div')
|
|
|
|
.then(result => {
|
|
|
|
expect(result).not.toContain('is-disabled');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-03-02 13:45:22 +00:00
|
|
|
});
|