salix/e2e/paths/client-module/07_edit_web_access.spec.js

67 lines
2.6 KiB
JavaScript
Raw Normal View History

import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';
2017-12-15 09:07:52 +00:00
2018-11-20 13:22:00 +00:00
describe('Client Edit web access path', () => {
const nightmare = createNightmare();
2017-12-15 09:07:52 +00:00
2018-11-20 13:22:00 +00:00
beforeAll(() => {
nightmare
.loginAndModule('employee', 'client');
2018-11-20 13:22:00 +00:00
});
2017-12-15 09:07:52 +00:00
2018-11-20 13:22:00 +00:00
it('should search for the user Bruce Banner', async () => {
const resultCount = await nightmare
.wait(selectors.clientsIndex.searchClientInput)
2018-11-20 13:22:00 +00:00
.type(selectors.clientsIndex.searchClientInput, 'Bruce Banner')
.click(selectors.clientsIndex.searchButton)
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
.countElement(selectors.clientsIndex.searchResult);
2018-10-30 07:51:18 +00:00
2018-11-20 13:22:00 +00:00
expect(resultCount).toEqual(1);
});
2017-12-15 09:07:52 +00:00
2018-11-20 13:22:00 +00:00
it(`should click on the search result to access to the client's web access`, async () => {
const url = await nightmare
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Banner')
.waitToClick(selectors.clientsIndex.searchResult)
.waitToClick(selectors.clientsIndex.othersButton)
.waitToClick(selectors.clientWebAccess.webAccessButton)
.waitForURL('web-access')
.parsedUrl();
2018-10-30 07:51:18 +00:00
expect(url.hash).toContain('web-access');
2018-11-20 13:22:00 +00:00
});
2017-12-15 09:07:52 +00:00
2018-11-20 13:22:00 +00:00
it(`should uncheck the Enable web access checkbox and update the name`, async () => {
const result = await nightmare
.waitToClick(selectors.clientWebAccess.enableWebAccessCheckbox)
.clearInput(selectors.clientWebAccess.userNameInput)
.type(selectors.clientWebAccess.userNameInput, 'Hulk')
.waitToClick(selectors.clientWebAccess.saveButton)
.waitForLastSnackbar();
2018-10-30 07:51:18 +00:00
2018-11-20 13:22:00 +00:00
expect(result).toEqual('Data saved!');
});
2017-12-15 09:07:52 +00:00
2018-11-20 13:22:00 +00:00
it('should confirm web access is now unchecked', async () => {
const result = await nightmare
.waitToClick(selectors.clientBasicData.basicDataButton)
.wait(selectors.clientBasicData.nameInput)
.waitToClick(selectors.clientsIndex.othersButton)
.waitToClick(selectors.clientWebAccess.webAccessButton)
.wait(selectors.clientWebAccess.enableWebAccessCheckbox)
.evaluate(selector => {
return document.querySelector(selector).checked;
}, selectors.clientWebAccess.enableWebAccessCheckbox);
2018-10-30 07:51:18 +00:00
2018-11-20 13:22:00 +00:00
expect(result).toBeFalsy();
});
2018-04-05 07:43:37 +00:00
2018-11-20 13:22:00 +00:00
it('should confirm web access name have been updated', async () => {
const result = await nightmare
.waitToGetProperty(selectors.clientWebAccess.userNameInput, 'value');
2018-10-30 07:51:18 +00:00
2018-11-20 13:22:00 +00:00
expect(result).toEqual('Hulk');
2017-12-15 09:07:52 +00:00
});
});