salix/e2e/paths/05-ticket-module/02_expeditions_and_log.spec.js

41 lines
1.7 KiB
JavaScript
Raw Normal View History

import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';
2019-02-01 11:16:39 +00:00
describe('Ticket expeditions and log path', () => {
2018-12-19 07:42:07 +00:00
const nightmare = createNightmare();
2018-12-19 07:42:07 +00:00
beforeAll(() => {
return nightmare
2019-02-01 11:16:39 +00:00
.loginAndModule('production', 'ticket')
2019-11-10 13:13:55 +00:00
.accessToSearchResult('1')
2018-12-19 07:42:07 +00:00
.accessToSection('ticket.card.expedition');
});
2019-01-07 08:33:07 +00:00
it(`should delete a former expedition and confirm the remaining expedition are the expected ones`, async() => {
2018-12-19 07:42:07 +00:00
const result = await nightmare
.waitToClick(selectors.ticketExpedition.secondExpeditionRemoveButton)
.waitToClick(selectors.ticketExpedition.acceptDeleteRowButton)
2019-01-23 15:00:56 +00:00
.waitToClick(selectors.ticketPackages.packagesButton)
2019-01-07 08:33:07 +00:00
.wait(selectors.ticketPackages.firstPackageAutocomplete)
2019-01-23 15:00:56 +00:00
.waitToClick(selectors.ticketExpedition.expeditionButton)
2018-12-19 07:42:07 +00:00
.wait(selectors.ticketExpedition.expeditionRow)
.countElement(selectors.ticketExpedition.expeditionRow);
expect(result).toEqual(3);
});
2019-01-11 11:41:07 +00:00
it(`should confirm the expedition deleted is shown now in the ticket log`, async() => {
const changedBy = await nightmare
.waitToClick(selectors.ticketLog.logButton)
.waitToGetProperty(selectors.ticketLog.changedBy, 'innerText');
const actionTaken = await nightmare
.waitToGetProperty(selectors.ticketLog.actionTaken, 'innerText');
const id = await nightmare
.waitToGetProperty(selectors.ticketLog.id, 'innerText');
expect(changedBy).toEqual('production');
expect(actionTaken).toEqual('Deletes');
expect(id).toEqual('2');
2019-01-11 11:41:07 +00:00
});
});