#8219 Added InvoiceOut e2e tests #1001

Merged
jon merged 24 commits from 8219-InvoiceOutE2E into dev 2025-01-08 06:41:33 +00:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit cb1f717fe0 - Show all commits

View File

@ -10,7 +10,7 @@ describe('InvoiceOut manual invoice', () => {
});
it('should create an invoice from a ticket and go to that invoice', () => {
cy.get('[label="Customer ID"]').type('1101{enter}');
cy.searchByLabel('Customer ID', '1101');
jon marked this conversation as resolved Outdated

Si es VnInput mirate el selector

Si es VnInput mirate el selector

Revisa el archivo commands

Revisa el archivo commands

También se puede usar cy.get('[data-cy="Customer ID_input"]')

También se puede usar cy.get('[data-cy="Customer ID_input"]')
cy.get(
'[data-q-vs-anchor=""] > :nth-child(1) > .q-checkbox > .q-checkbox__inner'
).click();

View File

@ -15,7 +15,7 @@ describe('InvoiceOut summary', () => {
it('should generate the invoice PDF', () => {
cy.get('#searchbar input').type('T1111111{enter}');
cy.get('[data-cy="descriptor-more-opts"] > .q-btn__content > .q-icon').click();
cy.dataCy('descriptor-more-opts').click();
jon marked this conversation as resolved Outdated

revisate el archivo comands

revisate el archivo comands
cy.get('.q-menu > .q-list > :nth-child(6)').click();
cy.dataCy('VnConfirm_confirm').click();
jon marked this conversation as resolved Outdated

Esto me hace pensar que nos has tirado los tests 🚩

Esto me hace pensar que nos has tirado los tests 🚩
cy.get(notification).should(
@ -26,7 +26,7 @@ describe('InvoiceOut summary', () => {
it('should refund the invoice ', () => {
cy.get('#searchbar input').type('T1111111{enter}');
cy.get('[data-cy="descriptor-more-opts"] > .q-btn__content > .q-icon').click();
cy.get('descriptor-more-opts').click();
cy.get('.q-menu > .q-list > :nth-child(7)').click();
cy.get('#q-portal--menu--3 > .q-menu > .q-list > :nth-child(2)').click();
cy.get(notification).should(
jon marked this conversation as resolved Outdated

revisate el archivo commands

revisate el archivo commands
@ -37,7 +37,7 @@ describe('InvoiceOut summary', () => {
it('should delete an invoice ', () => {
cy.get('#searchbar input').type('T2222222{enter}');
cy.get('[data-cy="descriptor-more-opts"] > .q-btn__content > .q-icon').click();
cy.dataCy('descriptor-more-opts').click();
cy.get('.q-menu > .q-list > :nth-child(4)').click();
cy.dataCy('VnConfirm_confirm').click();
cy.get(notification).should('contains.text', 'InvoiceOut deleted');
@ -45,7 +45,7 @@ describe('InvoiceOut summary', () => {
it('should transfer the invoice ', () => {
cy.get('#searchbar input').type('T1111111{enter}');
jon marked this conversation as resolved
Review

revisate commands

revisate commands
cy.get('[data-cy="descriptor-more-opts"] > .q-btn__content > .q-icon').click();
cy.dataCy('descriptor-more-opts').click();
cy.get('.q-menu > .q-list > :nth-child(1)').click();
cy.fillInForm(transferInvoice);
cy.get('.q-mt-lg > .q-btn').click();