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-10-13 09:20:51 +00:00
|
|
|
cy.get('input[aria-label="Agency"]').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
|
|
|
});
|
|
|
|
});
|