fix: agency list filters #1581

Merged
jtubau merged 11 commits from warmFix_8688-fixAgencyFilters into test 2025-03-13 06:15:40 +00:00
1 changed files with 3 additions and 6 deletions
Showing only changes of commit 3353c82f33 - Show all commits

View File

@ -1,17 +1,14 @@
/// <reference types="cypress" />
describe.skip('Client balance', () => {
describe('Client balance', () => {
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('developer');
cy.visit('#/customer/1101/balance');
});
it('Should load layout', () => {
cy.get('.q-page').should('be.visible');
});
it('Should create a mandate', () => {
cy.get('.q-page-sticky > div > .q-btn').click();
cy.dataCy('paymentBank').type({ arroyDown });
cy.dataCy('paymentAmount').type('100');
cy.selectOption('[data-cy="paymentBank"]', 2);
cy.dataCy('paymentAmount_input').type('100');
cy.saveCard();
});
});