2018-09-03 11:54:35 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
2018-10-24 08:57:14 +00:00
|
|
|
import createNightmare from '../../helpers/nightmare';
|
2018-09-03 11:54:35 +00:00
|
|
|
|
2019-06-07 11:07:23 +00:00
|
|
|
fdescribe('Ticket Edit basic data path', () => {
|
2018-11-22 14:44:33 +00:00
|
|
|
const nightmare = createNightmare();
|
|
|
|
|
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
2018-12-02 23:45:34 +00:00
|
|
|
.loginAndModule('employee', 'ticket')
|
2019-05-30 12:42:54 +00:00
|
|
|
.accessToSearchResult(11)
|
2019-04-16 13:00:21 +00:00
|
|
|
.accessToSection('ticket.card.basicData.stepOne');
|
2018-11-22 14:44:33 +00:00
|
|
|
});
|
|
|
|
|
2019-01-07 09:55:23 +00:00
|
|
|
it(`should edit the ticket agency then click next`, async() => {
|
2018-11-22 14:44:33 +00:00
|
|
|
let url = await nightmare
|
2019-01-07 09:55:23 +00:00
|
|
|
.autocompleteSearch(selectors.ticketBasicData.agencyAutocomplete, 'Silla247Expensive')
|
2019-01-23 15:00:56 +00:00
|
|
|
.waitToClick(selectors.ticketBasicData.nextStepButton)
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitForURL('data/step-two')
|
|
|
|
.parsedUrl();
|
|
|
|
|
|
|
|
expect(url.hash).toContain('data/step-two');
|
|
|
|
});
|
|
|
|
|
2019-01-07 09:55:23 +00:00
|
|
|
it(`should have a price diference`, async() => {
|
2018-11-22 14:44:33 +00:00
|
|
|
const result = await nightmare
|
2019-01-26 14:53:06 +00:00
|
|
|
.wait(1900)
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.ticketBasicData.stepTwoTotalPriceDif, 'innerText');
|
|
|
|
|
2019-05-09 07:32:04 +00:00
|
|
|
expect(result).toContain('-€13.95');
|
2018-11-22 14:44:33 +00:00
|
|
|
});
|
|
|
|
|
2019-01-07 09:55:23 +00:00
|
|
|
it(`should then click next to move on to step three`, async() => {
|
2018-11-22 14:44:33 +00:00
|
|
|
let url = await nightmare
|
2019-01-23 15:00:56 +00:00
|
|
|
.waitToClick(selectors.ticketBasicData.nextStepButton)
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitForURL('data/step-three')
|
|
|
|
.parsedUrl();
|
|
|
|
|
|
|
|
expect(url.hash).toContain('data/step-three');
|
|
|
|
});
|
|
|
|
|
2019-01-07 09:55:23 +00:00
|
|
|
it(`should select a new reason for the changes made then click on finalize`, async() => {
|
2018-11-22 14:44:33 +00:00
|
|
|
let url = await nightmare
|
2019-01-07 09:55:23 +00:00
|
|
|
.autocompleteSearch(selectors.ticketBasicData.chargesReasonAutocomplete, 'Cambiar los precios en el ticket')
|
2019-01-23 15:00:56 +00:00
|
|
|
.waitToClick(selectors.ticketBasicData.finalizeButton)
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitForURL('summary')
|
|
|
|
.parsedUrl();
|
|
|
|
|
|
|
|
expect(url.hash).toContain('summary');
|
2018-09-03 11:54:35 +00:00
|
|
|
});
|
|
|
|
});
|