2020-01-14 08:20:14 +00:00
|
|
|
import selectors from '../../helpers/selectors';
|
|
|
|
import getBrowser from '../../helpers/puppeteer';
|
2017-12-13 10:25:50 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
describe('Client Add address 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.address.index');
|
|
|
|
});
|
2018-11-20 13:22:00 +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
|
|
|
});
|
|
|
|
|
2019-01-07 08:33:07 +00:00
|
|
|
it(`should click on the add new address button to access to the new address form`, async() => {
|
2019-12-31 11:00:16 +00:00
|
|
|
await page.waitToClick(selectors.clientAddresses.createAddress);
|
|
|
|
await page.waitForURL('address/create');
|
|
|
|
const url = await page.parsedUrl();
|
2018-11-20 13:22:00 +00:00
|
|
|
|
2018-11-22 14:44:33 +00:00
|
|
|
expect(url.hash).toContain('address/create');
|
2018-11-20 13:22:00 +00:00
|
|
|
});
|
|
|
|
|
2019-01-07 08:33:07 +00:00
|
|
|
it('should receive an error after clicking save button as consignee, street and town fields are empty', async() => {
|
2019-12-31 11:00:16 +00:00
|
|
|
await page.waitToClick(selectors.clientAddresses.defaultCheckboxInput);
|
|
|
|
await page.autocompleteSearch(selectors.clientAddresses.provinceAutocomplete, 'Province one');
|
|
|
|
await page.write(selectors.clientAddresses.cityInput, 'Valencia');
|
|
|
|
await page.write(selectors.clientAddresses.postcodeInput, '46000');
|
|
|
|
await page.autocompleteSearch(selectors.clientAddresses.agencyAutocomplete, 'Entanglement');
|
|
|
|
await page.write(selectors.clientAddresses.phoneInput, '999887744');
|
|
|
|
await page.write(selectors.clientAddresses.mobileInput, '999887744');
|
|
|
|
await page.waitToClick(selectors.clientFiscalData.saveButton);
|
|
|
|
const result = await page.waitForLastSnackbar();
|
2018-11-20 13:22:00 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('Some fields are invalid');
|
|
|
|
});
|
|
|
|
|
2019-01-07 08:33:07 +00:00
|
|
|
it(`should create a new address with all it's data`, async() => {
|
2019-12-31 11:00:16 +00:00
|
|
|
await page.write(selectors.clientAddresses.consigneeInput, 'Bruce Bunner');
|
|
|
|
await page.write(selectors.clientAddresses.streetAddressInput, '320 Park Avenue New York');
|
|
|
|
await page.waitToClick(selectors.clientAddresses.saveButton);
|
|
|
|
const result = await page.waitForLastSnackbar();
|
2018-11-20 13:22:00 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
|
2020-01-14 08:20:14 +00:00
|
|
|
it(`should click on the first address button to confirm the new address exists and it's the default one`, async() => {
|
2019-12-31 11:00:16 +00:00
|
|
|
const result = await page.waitToGetProperty(selectors.clientAddresses.defaultAddress, 'innerText');
|
2018-11-20 13:22:00 +00:00
|
|
|
|
|
|
|
expect(result).toContain('320 Park Avenue New York');
|
|
|
|
});
|
|
|
|
|
2020-01-14 08:20:14 +00:00
|
|
|
it(`should click on the make default icon of the second address`, async() => {
|
2019-12-31 11:00:16 +00:00
|
|
|
await page.waitToClick(selectors.clientAddresses.secondMakeDefaultStar);
|
2020-01-14 08:20:14 +00:00
|
|
|
const result = await page.waitForLastSnackbar();
|
|
|
|
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should confirm the default address is the expected one`, async() => {
|
2019-12-31 11:00:16 +00:00
|
|
|
await page.waitForTextInElement(selectors.clientAddresses.defaultAddress, 'Somewhere in Thailand');
|
|
|
|
const result = await page.waitToGetProperty(selectors.clientAddresses.defaultAddress, 'innerText');
|
2018-11-20 13:22:00 +00:00
|
|
|
|
|
|
|
expect(result).toContain('Somewhere in Thailand');
|
|
|
|
});
|
|
|
|
|
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, 'Somewhere in Thailand');
|
|
|
|
await page.waitToClick(selectors.clientAddresses.firstEditAddress);
|
|
|
|
await page.waitForURL('/edit');
|
|
|
|
const url = await page.parsedUrl();
|
2018-11-20 13:22:00 +00:00
|
|
|
|
2018-11-22 14:44:33 +00:00
|
|
|
expect(url.hash).toContain('/edit');
|
2018-11-20 13:22:00 +00:00
|
|
|
});
|
|
|
|
|
2019-01-07 08:33:07 +00:00
|
|
|
it(`should click on the active checkbox and receive an error to save it because it is the default address`, async() => {
|
2019-12-31 11:00:16 +00:00
|
|
|
await page.waitForWatcherData(selectors.clientAddresses.watcher);
|
|
|
|
await page.waitToClick(selectors.clientAddresses.activeCheckbox);
|
|
|
|
await page.waitToClick(selectors.clientAddresses.saveButton);
|
|
|
|
const result = await page.waitForLastSnackbar();
|
2018-11-20 13:22:00 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('The default consignee can not be unchecked');
|
2017-12-13 16:25:07 +00:00
|
|
|
});
|
2019-01-23 14:34:16 +00:00
|
|
|
|
|
|
|
it(`should go back to the addreses section by clicking the cancel button`, async() => {
|
2020-01-16 12:40:51 +00:00
|
|
|
await page.waitToClick(selectors.clientAddresses.cancelEditAddressButton);
|
|
|
|
await page.waitToClick('.vn-confirm.shown button[response="accept"]');
|
|
|
|
await page.waitForURL('address/index');
|
2019-12-31 11:00:16 +00:00
|
|
|
const url = await page.parsedUrl();
|
2019-01-23 14:34:16 +00:00
|
|
|
|
|
|
|
expect(url.hash).toContain('address/index');
|
|
|
|
});
|
2017-12-13 10:25:50 +00:00
|
|
|
});
|