salix/e2e/paths/02-client-module/06_add_address_notes.spec.js

55 lines
2.4 KiB
JavaScript
Raw Normal View History

import selectors from '../../helpers/selectors.js';
2019-12-12 07:37:35 +00:00
import openPage from '../../helpers/puppeteer';
2017-12-15 09:07:52 +00:00
2018-09-05 06:27:50 +00:00
describe('Client add address notes path', () => {
2019-12-31 11:00:16 +00:00
let page;
beforeAll(async() => {
page = await openPage();
await page.loginAndModule('employee', 'client');
await page.accessToSearchResult('Petter Parker');
await page.accessToSection('client.card.address.index');
});
2017-12-15 09:07:52 +00:00
2019-12-31 11:00:16 +00:00
afterAll(async() => {
page.close();
2018-09-05 06:27:50 +00:00
});
2017-12-15 09:07:52 +00:00
2019-01-07 08:33:07 +00:00
it(`should click on the edit icon of the default address`, async() => {
2019-12-31 11:00:16 +00:00
await page.waitForTextInElement(selectors.clientAddresses.defaultAddress, '20 Ingram Street');
await page.waitToClick(selectors.clientAddresses.firstEditAddress);
await page.waitForURL('/edit');
const url = await page.parsedUrl();
2018-10-30 07:51:18 +00:00
expect(url.hash).toContain('/edit');
2018-09-05 06:27:50 +00:00
});
2017-12-15 09:07:52 +00:00
2019-01-07 08:33:07 +00:00
it('should not save a description without observation type', async() => {
2019-12-31 11:00:16 +00:00
await page.waitToClick(selectors.clientAddresses.addObservationButton);
await page.write(selectors.clientAddresses.firstObservationDescriptionInput, 'first description');
await page.waitToClick(selectors.clientAddresses.saveButton);
const result = await page.waitForLastSnackbar();
2018-10-30 07:51:18 +00:00
2019-11-12 07:51:50 +00:00
expect(result).toEqual('Some fields are invalid');
2018-09-05 06:27:50 +00:00
});
2019-01-07 08:33:07 +00:00
it('should not save an observation type without description', async() => {
2019-12-31 11:00:16 +00:00
await page.clearInput(selectors.clientAddresses.firstObservationDescriptionInput);
await page.autocompleteSearch(selectors.clientAddresses.firstObservationTypeAutocomplete, 'comercial');
await page.waitToClick(selectors.clientAddresses.saveButton);
const result = await page.waitForLastSnackbar();
2018-10-30 07:51:18 +00:00
expect(result).toEqual('Some fields are invalid');
2018-09-05 06:27:50 +00:00
});
2019-01-07 08:33:07 +00:00
it('should create two new observations', async() => {
2019-12-31 11:00:16 +00:00
await page.write(selectors.clientAddresses.firstObservationDescriptionInput, 'first description');
await page.waitToClick(selectors.clientAddresses.addObservationButton);
await page.autocompleteSearch(selectors.clientAddresses.secondObservationTypeAutocomplete, 'observation one');
await page.write(selectors.clientAddresses.secondObservationDescriptionInput, 'second description');
await page.waitToClick(selectors.clientAddresses.saveButton);
const result = await page.waitForLastSnackbar();
2018-10-30 07:51:18 +00:00
expect(result).toEqual('Data saved!');
});
});