2024-07-15 08:44:28 +00:00
|
|
|
describe('ZoneList', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
cy.viewport(1280, 720);
|
|
|
|
cy.login('developer');
|
|
|
|
cy.visit('/#/zone/list');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should filter by agency', () => {
|
2024-08-13 12:39:50 +00:00
|
|
|
cy.get(
|
|
|
|
':nth-child(1) > .column > .q-field > .q-field__inner > .q-field__control > .q-field__control-container'
|
|
|
|
).type('{downArrow}{enter}');
|
2024-07-15 08:44:28 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should open the zone summary', () => {
|
2024-08-13 12:39:50 +00:00
|
|
|
cy.get('input[aria-label="Name"]').type('zone refund');
|
|
|
|
cy.get('.q-scrollarea__content > .q-btn--standard > .q-btn__content').click();
|
2024-07-15 08:44:28 +00:00
|
|
|
});
|
|
|
|
});
|