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';
|
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
|
2018-12-02 23:45:34 +00:00
|
|
|
.loginAndModule('employee', 'client')
|
|
|
|
.accessToSearchResult('Bruce Banner')
|
|
|
|
.accessToSection('client.card.webAccess');
|
2018-11-20 13:22:00 +00:00
|
|
|
});
|
2017-12-15 09:07:52 +00:00
|
|
|
|
2019-01-16 14:02:50 +00:00
|
|
|
it(`should uncheck the Enable web access checkbox and update the name`, async() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
const result = await nightmare
|
|
|
|
.waitToClick(selectors.clientWebAccess.enableWebAccessCheckbox)
|
|
|
|
.clearInput(selectors.clientWebAccess.userNameInput)
|
2019-01-23 14:33:25 +00:00
|
|
|
.write(selectors.clientWebAccess.userNameInput, 'Hulk')
|
2018-11-20 13:22:00 +00:00
|
|
|
.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
|
|
|
|
2019-01-16 14:02:50 +00:00
|
|
|
it('should confirm web access is now unchecked', async() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
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
|
|
|
|
2019-01-16 14:02:50 +00:00
|
|
|
it('should confirm web access name have been updated', async() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.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
|
|
|
});
|
|
|
|
});
|