salix/e2e/paths/06-claim-module/02_development.spec.js

101 lines
4.6 KiB
JavaScript
Raw Normal View History

2019-01-15 07:33:19 +00:00
import selectors from '../../helpers/selectors.js';
import getBrowser from '../../helpers/puppeteer';
2019-01-15 07:33:19 +00:00
2019-01-15 07:40:16 +00:00
describe('Claim development', () => {
let browser;
let page;
beforeAll(async() => {
browser = await getBrowser();
page = browser.page;
await page.loginAndModule('salesAssistant', 'claim');
await page.accessToSearchResult('1');
await page.accessToSection('claim.card.development');
});
2019-01-15 07:33:19 +00:00
afterAll(async() => {
await browser.close();
2019-01-15 07:33:19 +00:00
});
it('should delete a development and create a new one', async() => {
await page.waitToClick(selectors.claimDevelopment.firstDeleteDevelopmentButton);
await page.waitToClick(selectors.claimDevelopment.addDevelopmentButton);
await page.autocompleteSearch(selectors.claimDevelopment.secondClaimReasonAutocomplete, 'Baja calidad');
await page.autocompleteSearch(selectors.claimDevelopment.secondClaimResultAutocomplete, 'Deshidratacion');
await page.autocompleteSearch(selectors.claimDevelopment.secondClaimResponsibleAutocomplete, 'Calidad general');
await page.autocompleteSearch(selectors.claimDevelopment.secondClaimWorkerAutocomplete, 'deliveryNick');
await page.autocompleteSearch(selectors.claimDevelopment.secondClaimRedeliveryAutocomplete, 'Reparto');
await page.waitToClick(selectors.claimDevelopment.saveDevelopmentButton);
const result = await page.waitForLastSnackbar();
2019-01-15 07:33:19 +00:00
expect(result).toEqual('Data saved!');
}, 15000);
it(`should redirect to the next section of claims as the role is salesAssistant`, async() => {
await page.waitForURL('/action');
const url = await page.parsedUrl();
expect(url.hash).toContain('/action');
2019-01-15 07:33:19 +00:00
});
it('should edit a development', async() => {
await page.reloadSection('claim.card.development');
await page.autocompleteSearch(selectors.claimDevelopment.firstClaimReasonAutocomplete, 'Calor');
await page.autocompleteSearch(selectors.claimDevelopment.firstClaimResultAutocomplete, 'Cocido');
await page.autocompleteSearch(selectors.claimDevelopment.firstClaimResponsibleAutocomplete, 'Calidad general');
await page.autocompleteSearch(selectors.claimDevelopment.firstClaimWorkerAutocomplete, 'adminAssistantNick');
await page.autocompleteSearch(selectors.claimDevelopment.firstClaimRedeliveryAutocomplete, 'Cliente');
await page.waitToClick(selectors.claimDevelopment.saveDevelopmentButton);
const result = await page.waitForLastSnackbar();
2019-01-15 07:33:19 +00:00
expect(result).toEqual('Data saved!');
});
it('should confirm the first development is the expected one', async() => {
await page.reloadSection('claim.card.development');
const reason = await page
.waitToGetProperty(selectors.claimDevelopment.firstClaimReasonAutocomplete, 'value');
2019-01-15 07:33:19 +00:00
const result = await page
.waitToGetProperty(selectors.claimDevelopment.firstClaimResultAutocomplete, 'value');
2019-01-15 07:33:19 +00:00
const responsible = await page
.waitToGetProperty(selectors.claimDevelopment.firstClaimResponsibleAutocomplete, 'value');
2019-01-15 07:33:19 +00:00
const worker = await page
.waitToGetProperty(selectors.claimDevelopment.firstClaimWorkerAutocomplete, 'value');
2019-01-15 07:33:19 +00:00
const redelivery = await page
.waitToGetProperty(selectors.claimDevelopment.firstClaimRedeliveryAutocomplete, 'value');
2019-01-15 07:33:19 +00:00
expect(reason).toEqual('Calor');
expect(result).toEqual('Cocido');
expect(responsible).toEqual('Calidad general');
expect(worker).toEqual('adminAssistantNick');
2019-01-15 07:33:19 +00:00
expect(redelivery).toEqual('Cliente');
});
it('should confirm the second development is the expected one', async() => {
const reason = await page
.waitToGetProperty(selectors.claimDevelopment.secondClaimReasonAutocomplete, 'value');
2019-01-15 07:33:19 +00:00
const result = await page
.waitToGetProperty(selectors.claimDevelopment.secondClaimResultAutocomplete, 'value');
2019-01-15 07:33:19 +00:00
const responsible = await page
.waitToGetProperty(selectors.claimDevelopment.secondClaimResponsibleAutocomplete, 'value');
2019-01-15 07:33:19 +00:00
const worker = await page
.waitToGetProperty(selectors.claimDevelopment.secondClaimWorkerAutocomplete, 'value');
2019-01-15 07:33:19 +00:00
const redelivery = await page
.waitToGetProperty(selectors.claimDevelopment.secondClaimRedeliveryAutocomplete, 'value');
2019-01-15 07:33:19 +00:00
expect(reason).toEqual('Baja calidad');
expect(result).toEqual('Deshidratacion');
expect(responsible).toEqual('Calidad general');
expect(worker).toEqual('deliveryNick');
2019-01-15 07:33:19 +00:00
expect(redelivery).toEqual('Reparto');
});
});