0
0
Fork 0
salix-front-mindshore-fork2/test/cypress/integration/zone/zoneList.spec.js

16 lines
437 B
JavaScript
Raw Normal View History

describe('ZoneList', () => {
beforeEach(() => {
cy.viewport(1920, 1080);
cy.login('developer');
cy.visit(`/#/zone/list`);
});
it('should open the details', () => {
cy.get(':nth-child(1) > .text-right > .material-symbols-outlined').click();
});
it('should redirect to summary', () => {
cy.waitForElement('.q-page');
cy.get('tbody > :nth-child(1)').click();
});
});