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

56 lines
2.4 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-09-05 06:27:50 +00:00
describe('Client add address notes 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('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() => {
await browser.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);
2020-02-04 15:21:10 +00:00
let url = await page.expectURL('/edit');
2018-10-30 07:51:18 +00:00
2020-02-04 15:21:10 +00:00
expect(url).toBe(true);
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);
2020-02-03 14:55:11 +00:00
await page.write(selectors.clientAddresses.firstObservationDescription, 'first description');
2019-12-31 11:00:16 +00:00
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() => {
2020-02-03 14:55:11 +00:00
await page.clearInput(selectors.clientAddresses.firstObservationDescription);
await page.autocompleteSearch(selectors.clientAddresses.firstObservationType, 'comercial');
2019-12-31 11:00:16 +00:00
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() => {
2020-02-03 14:55:11 +00:00
await page.write(selectors.clientAddresses.firstObservationDescription, 'first description');
2019-12-31 11:00:16 +00:00
await page.waitToClick(selectors.clientAddresses.addObservationButton);
2020-02-03 14:55:11 +00:00
await page.autocompleteSearch(selectors.clientAddresses.secondObservationType, 'observation one');
await page.write(selectors.clientAddresses.secondObservationDescription, 'second description');
2019-12-31 11:00:16 +00:00
await page.waitToClick(selectors.clientAddresses.saveButton);
const result = await page.waitForLastSnackbar();
2018-10-30 07:51:18 +00:00
expect(result).toEqual('Data saved!');
});
});