#605 e2e ticket.basicData
This commit is contained in:
parent
d5e0d3beef
commit
2674783218
|
@ -319,7 +319,19 @@ export default {
|
||||||
secondSaleText: `vn-table div > vn-tbody > vn-tr:nth-child(2)`
|
secondSaleText: `vn-table div > vn-tbody > vn-tr:nth-child(2)`
|
||||||
},
|
},
|
||||||
ticketBasicData: {
|
ticketBasicData: {
|
||||||
basicDataButton: `vn-menu-item a[ui-sref="ticket.card.data.stepOne"]`
|
basicDataButton: `vn-menu-item a[ui-sref="ticket.card.data.stepOne"]`,
|
||||||
|
clientSelect: `vn-autocomplete[field="$ctrl.clientFk"] input`,
|
||||||
|
clientSelectThirdOption: `vn-autocomplete[field="$ctrl.clientFk"] vn-drop-down ul > li:nth-child(3)`,
|
||||||
|
addressSelect: `vn-autocomplete[field="$ctrl.ticket.addressFk"] input`,
|
||||||
|
addressSelectSecondOption: `vn-autocomplete[field="$ctrl.ticket.addressFk"] vn-drop-down ul > li:nth-child(2)`,
|
||||||
|
agencySelect: `vn-autocomplete[field="$ctrl.ticket.agencyModeFk"] input`,
|
||||||
|
agencySelectFifthOption: `vn-autocomplete[field="$ctrl.ticket.agencyModeFk"] vn-drop-down ul > li:nth-child(5)`,
|
||||||
|
nextStepButton: `vn-step-control > section > section.buttons > section:nth-child(2) > vn-button`,
|
||||||
|
finalizeButton: `vn-step-control > section > section.buttons > section:nth-child(2) > vn-submit`,
|
||||||
|
stepTwoTotalPriceDif: `vn-ticket-data-step-two > form > vn-card > div > vn-horizontal > table > tfoot > tr > td:nth-child(4)`,
|
||||||
|
chargesReason: `vn-autocomplete[field="$ctrl.ticket.option"] input`,
|
||||||
|
chargesReasonFourthOption: `vn-autocomplete[field="$ctrl.ticket.option"] vn-drop-down ul > li:nth-child(4)`,
|
||||||
|
chargesReasonFirstOption: `vn-autocomplete[field="$ctrl.ticket.option"] vn-drop-down ul > li:nth-child(1)`
|
||||||
},
|
},
|
||||||
createStateView: {
|
createStateView: {
|
||||||
stateInput: `vn-autocomplete[field="$ctrl.ticket.stateFk"] > div > div > input`,
|
stateInput: `vn-autocomplete[field="$ctrl.ticket.stateFk"] > div > div > input`,
|
||||||
|
|
|
@ -0,0 +1,150 @@
|
||||||
|
import selectors from '../../helpers/selectors.js';
|
||||||
|
import createNightmare from '../../helpers/helpers';
|
||||||
|
|
||||||
|
describe('Ticket', () => {
|
||||||
|
describe('Edit basic data path', () => {
|
||||||
|
const nightmare = createNightmare();
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
return nightmare
|
||||||
|
.waitForLogin('developer');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should click on the Tickets button of the top bar menu', () => {
|
||||||
|
return nightmare
|
||||||
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
||||||
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
||||||
|
.waitToClick(selectors.globalItems.ticketsButton)
|
||||||
|
.wait(selectors.ticketsIndex.createTicketButton)
|
||||||
|
.parsedUrl()
|
||||||
|
.then(url => {
|
||||||
|
expect(url.hash).toEqual('#!/ticket/index');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should search for the ticket 11', () => {
|
||||||
|
return nightmare
|
||||||
|
.wait(selectors.ticketsIndex.searchResult)
|
||||||
|
.type(selectors.ticketsIndex.searchTicketInput, 'id:11')
|
||||||
|
.click(selectors.ticketsIndex.searchButton)
|
||||||
|
.waitForNumberOfElements(selectors.ticketsIndex.searchResult, 1)
|
||||||
|
.countElement(selectors.ticketsIndex.searchResult)
|
||||||
|
.then(result => {
|
||||||
|
expect(result).toEqual(1);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it(`should click on the search result to access to the ticket Basic Data`, () => {
|
||||||
|
return nightmare
|
||||||
|
.waitForTextInElement(selectors.ticketsIndex.searchResult, 'ticket 1') // should be Bruce Wayne
|
||||||
|
.waitToClick(selectors.ticketsIndex.searchResult)
|
||||||
|
.waitToClick(selectors.ticketBasicData.basicDataButton)
|
||||||
|
.waitForURL('data/step-one')
|
||||||
|
.url()
|
||||||
|
.then(url => {
|
||||||
|
expect(url).toContain('data/step-one');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it(`should edit the client and address of the ticket then click next`, () => {
|
||||||
|
return nightmare
|
||||||
|
.waitToClick(selectors.ticketBasicData.clientSelect)
|
||||||
|
.waitToClick(selectors.ticketBasicData.clientSelectThirdOption)
|
||||||
|
.wait(500)
|
||||||
|
.waitToClick(selectors.ticketBasicData.addressSelect)
|
||||||
|
.waitToClick(selectors.ticketBasicData.addressSelectSecondOption)
|
||||||
|
.waitForTextInInput(selectors.ticketBasicData.addressSelect, 'Charles')
|
||||||
|
.click(selectors.ticketBasicData.nextStepButton)
|
||||||
|
.waitForURL('data/step-two')
|
||||||
|
.url()
|
||||||
|
.then(url => {
|
||||||
|
expect(url).toContain('data/step-two');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it(`should have no price diference`, () => {
|
||||||
|
return nightmare
|
||||||
|
.getInnerText(selectors.ticketBasicData.stepTwoTotalPriceDif)
|
||||||
|
.then(result => {
|
||||||
|
expect(result).toContain('0');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it(`should click next to move on to step three`, () => {
|
||||||
|
return nightmare
|
||||||
|
.click(selectors.ticketBasicData.nextStepButton)
|
||||||
|
.waitForURL('data/step-three')
|
||||||
|
.url()
|
||||||
|
.then(url => {
|
||||||
|
expect(url).toContain('data/step-three');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it(`should select a reason for the changes made then click on finalize`, () => {
|
||||||
|
return nightmare
|
||||||
|
.waitToClick(selectors.ticketBasicData.chargesReason)
|
||||||
|
.waitToClick(selectors.ticketBasicData.chargesReasonFourthOption)
|
||||||
|
.waitForTextInInput(selectors.ticketBasicData.chargesReason, 'No realizar modificaciones en precios')
|
||||||
|
.click(selectors.ticketBasicData.finalizeButton)
|
||||||
|
.waitForURL('summary')
|
||||||
|
.url()
|
||||||
|
.then(url => {
|
||||||
|
expect(url).toContain('summary');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it(`should go back to ticket.basicData section`, () => {
|
||||||
|
return nightmare
|
||||||
|
.waitToClick(selectors.ticketBasicData.basicDataButton)
|
||||||
|
.waitForURL('data/step-one')
|
||||||
|
.url()
|
||||||
|
.then(url => {
|
||||||
|
expect(url).toContain('data/step-one');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it(`should edit the ticket agency then click next`, () => {
|
||||||
|
return nightmare
|
||||||
|
.waitToClick(selectors.ticketBasicData.agencySelect)
|
||||||
|
.waitToClick(selectors.ticketBasicData.agencySelectFifthOption)
|
||||||
|
.waitForTextInInput(selectors.ticketBasicData.agencySelect, 'Expensive')
|
||||||
|
.click(selectors.ticketBasicData.nextStepButton)
|
||||||
|
.waitForURL('data/step-two')
|
||||||
|
.url()
|
||||||
|
.then(url => {
|
||||||
|
expect(url).toContain('data/step-two');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it(`should have a price diference`, () => {
|
||||||
|
return nightmare
|
||||||
|
.getInnerText(selectors.ticketBasicData.stepTwoTotalPriceDif)
|
||||||
|
.then(result => {
|
||||||
|
expect(result).toContain('-€206.60');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it(`should then click next to move on to step three`, () => {
|
||||||
|
return nightmare
|
||||||
|
.click(selectors.ticketBasicData.nextStepButton)
|
||||||
|
.waitForURL('data/step-three')
|
||||||
|
.url()
|
||||||
|
.then(url => {
|
||||||
|
expect(url).toContain('data/step-three');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it(`should select a new reason for the changes made then click on finalize`, () => {
|
||||||
|
return nightmare
|
||||||
|
.waitToClick(selectors.ticketBasicData.chargesReason)
|
||||||
|
.waitToClick(selectors.ticketBasicData.chargesReasonFirstOption)
|
||||||
|
.waitForTextInInput(selectors.ticketBasicData.chargesReason, 'Cambiar los precios en el ticket')
|
||||||
|
.click(selectors.ticketBasicData.finalizeButton)
|
||||||
|
.waitForURL('summary')
|
||||||
|
.url()
|
||||||
|
.then(url => {
|
||||||
|
expect(url).toContain('summary');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue