salix/e2e/paths/ticket-module/02_delete_ticket_expedition...

27 lines
1.1 KiB
JavaScript
Raw Normal View History

import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';
2018-12-19 07:42:07 +00:00
describe('Ticket Delete expeditions path', () => {
const nightmare = createNightmare();
2018-12-19 07:42:07 +00:00
beforeAll(() => {
return nightmare
.loginAndModule('production', 'ticket')
.accessToSearchResult('id:1')
.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)
.click(selectors.ticketPackages.packagesButton)
2019-01-07 08:33:07 +00:00
.wait(selectors.ticketPackages.firstPackageAutocomplete)
2018-12-19 07:42:07 +00:00
.click(selectors.ticketExpedition.expeditionButton)
.wait(selectors.ticketExpedition.expeditionRow)
.countElement(selectors.ticketExpedition.expeditionRow);
2018-12-19 07:42:07 +00:00
expect(result).toEqual(3);
});
});