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

57 lines
2.2 KiB
JavaScript
Raw Normal View History

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', () => {
let browser;
2019-12-31 11:00:16 +00:00
let page;
beforeAll(async() => {
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() => {
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
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
});