fix: #8425 fixed zoneWarehouse e2e test not working #1304
|
@ -14,7 +14,7 @@ describe('ZoneWarehouse', () => {
|
|||
|
||||
it('should throw an error if the warehouse chosen is already put in the zone', () => {
|
||||
cy.addBtnClick();
|
||||
cy.get('[data-cy="Warehouse_select"]').type('Warehouse Two{enter}');
|
||||
cy.get('.vn-row > .q-field > .q-field__inner > .q-field__control').type('Warehouse Two{enter}');
|
||||
|
||||
cy.get(saveBtn).click();
|
||||
cy.checkNotification(dataError);
|
||||
});
|
||||
|
@ -24,7 +24,6 @@ describe('ZoneWarehouse', () => {
|
|||
cy.fillInForm(data);
|
||||
cy.get(saveBtn).click();
|
||||
cy.get('.q-mt-lg > .q-btn--standard').click();
|
||||
|
||||
cy.get('tbody > :nth-child(2) > :nth-child(2) > .q-icon').click();
|
||||
cy.get('[title="Confirm"]').click();
|
||||
|
||||
|
|
Loading…
Reference in New Issue
revisa el proyecto si esa es la manera correcta.
Imagino que habrán 2 estilos, una pista, esta es la manera antigua, hemos evolucionado
Sin mirar el código se te ocurre alguna manera de porque está mal? Por ejemplo, es engorroso estar escribiendo siempre data-cy, que pasa si mañana decidimos data-test-cy, un montón de reemplazos no?
Esto está bien
cy.get('[data-cy="Warehouse_select"]').type('Warehouse
Two{enter}');`Pero puede estar mejor, por eso digo que revisa como usamos el cy.get para seleccionar atributos data-cy
Ahora te adjunto el report con mi propuesta para validar que pasa