8602-refatorAndCreateEntry #1584

Merged
pablone merged 31 commits from 8602-refatorAndCreateEntry into test 2025-03-18 08:41:59 +00:00
1 changed files with 2 additions and 0 deletions
Showing only changes of commit 639a7bc072 - Show all commits

View File

@ -390,6 +390,7 @@ Cypress.Commands.add('clickButtonWith', (type, value) => {
break;
}
});
Cypress.Commands.add('clickButtonWithIcon', (iconClass) => {
cy.waitForElement('[data-cy="descriptor_actions"]');
cy.get('[data-cy="loading-spinner"]', { timeout: 10000 }).should('not.be.visible');
@ -399,6 +400,7 @@ Cypress.Commands.add('clickButtonWithIcon', (iconClass) => {
cy.wrap($btn).click();
});
});
Cypress.Commands.add('clickButtonWithText', (buttonText) => {
cy.get('.q-btn').contains(buttonText).click();
});