2018-02-15 11:28:05 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
2018-10-24 08:57:14 +00:00
|
|
|
import createNightmare from '../../helpers/nightmare';
|
2018-01-12 13:20:28 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
describe('Client mandate path', () => {
|
|
|
|
const nightmare = createNightmare();
|
|
|
|
|
|
|
|
beforeAll(() => {
|
|
|
|
nightmare
|
2018-11-23 07:05:57 +00:00
|
|
|
.loginAndModule('salesPerson', 'client');
|
2018-11-20 13:22:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should search for the user Petter Parker', async () => {
|
|
|
|
const resultCount = await nightmare
|
2018-11-21 13:30:32 +00:00
|
|
|
.wait(selectors.clientsIndex.searchClientInput)
|
2018-11-20 13:22:00 +00:00
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Petter Parker')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
.countElement(selectors.clientsIndex.searchResult);
|
|
|
|
|
|
|
|
expect(resultCount).toEqual(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click on the search result to access to the client's mandate`, async () => {
|
|
|
|
const url = await nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Petter')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.clientsIndex.othersButton)
|
|
|
|
.waitToClick(selectors.clientMandate.mandateButton)
|
|
|
|
.waitForURL('mandate')
|
2018-11-22 14:44:33 +00:00
|
|
|
.parsedUrl();
|
2018-11-20 13:22:00 +00:00
|
|
|
|
2018-11-22 14:44:33 +00:00
|
|
|
expect(url.hash).toContain('mandate');
|
2018-11-20 13:22:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should confirm the client has a mandate of the CORE type', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientMandate.firstMandateText, 'innerText');
|
2018-11-20 13:22:00 +00:00
|
|
|
|
|
|
|
expect(result).toContain('1');
|
|
|
|
expect(result).toContain('VNL');
|
|
|
|
expect(result).toContain('CORE');
|
2018-01-12 13:20:28 +00:00
|
|
|
});
|
|
|
|
});
|