2020-01-14 08:20:14 +00:00
|
|
|
import selectors from '../../helpers/selectors';
|
|
|
|
import getBrowser from '../../helpers/puppeteer';
|
2017-12-15 09:07:52 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
describe('Client Edit web access path', () => {
|
2020-01-14 08:20:14 +00:00
|
|
|
let browser;
|
2019-12-31 11:00:16 +00:00
|
|
|
let page;
|
|
|
|
beforeAll(async() => {
|
2020-01-14 08:20:14 +00:00
|
|
|
browser = await getBrowser();
|
|
|
|
page = browser.page;
|
2019-12-31 11:00:16 +00:00
|
|
|
await page.loginAndModule('employee', 'client');
|
|
|
|
await page.accessToSearchResult('Bruce Banner');
|
|
|
|
await page.accessToSection('client.card.webAccess');
|
|
|
|
});
|
2017-12-15 09:07:52 +00:00
|
|
|
|
2019-12-31 11:00:16 +00:00
|
|
|
afterAll(async() => {
|
2020-01-14 08:40:50 +00:00
|
|
|
await browser.close();
|
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() => {
|
2019-12-31 11:00:16 +00:00
|
|
|
await page.waitToClick(selectors.clientWebAccess.enableWebAccessCheckbox);
|
2020-02-03 14:55:11 +00:00
|
|
|
await page.clearInput(selectors.clientWebAccess.userName);
|
|
|
|
await page.write(selectors.clientWebAccess.userName, 'Hulk');
|
2019-12-31 11:00:16 +00:00
|
|
|
await page.waitToClick(selectors.clientWebAccess.saveButton);
|
2020-04-08 09:24:40 +00:00
|
|
|
const message = await page.waitForSnackbar();
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2020-04-08 09:24:40 +00:00
|
|
|
expect(message.type).toBe('success');
|
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 confirm web access is now unchecked', async() => {
|
2020-04-02 16:55:07 +00:00
|
|
|
await page.accessToSection('client.card.basicData');
|
|
|
|
await page.accessToSection('client.card.webAccess');
|
2019-12-31 11:00:16 +00:00
|
|
|
const result = await page.checkboxState(selectors.clientWebAccess.enableWebAccessCheckbox);
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2019-02-14 19:17:22 +00:00
|
|
|
expect(result).toBe('unchecked');
|
2018-11-20 13:22:00 +00:00
|
|
|
});
|
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() => {
|
2020-02-03 14:55:11 +00:00
|
|
|
const result = await page.waitToGetProperty(selectors.clientWebAccess.userName, '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
|
|
|
});
|
2020-06-16 08:32:32 +00:00
|
|
|
|
|
|
|
it(`should navigate to the log section`, async() => {
|
|
|
|
await page.accessToSection('client.card.log');
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should confirm the log is showing the updated data for the client`, async() => {
|
|
|
|
let lastModificationPreviousValue = await page
|
|
|
|
.waitToGetProperty(selectors.clientLog.lastModificationPreviousValue, 'innerText');
|
|
|
|
let lastModificationCurrentValue = await page
|
|
|
|
.waitToGetProperty(selectors.clientLog.lastModificationCurrentValue, 'innerText');
|
|
|
|
|
|
|
|
expect(lastModificationPreviousValue).toEqual('name: BruceBanner active: true');
|
|
|
|
expect(lastModificationCurrentValue).toEqual('name: Hulk active: false');
|
|
|
|
});
|
2017-12-15 09:07:52 +00:00
|
|
|
});
|