test: refs #6695 run all e2e (try better selectOption)
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-02-03 15:26:42 +01:00
parent 42ba6969ad
commit c11993c413
1 changed files with 3 additions and 3 deletions

View File

@ -108,9 +108,9 @@ Cypress.Commands.add('selectOption', (selector, option, timeout = 10000) => {
cy.wait('@dataRequest');
}
cy.get('.q-menu', { timeout }).should('exist').should('be.visible');
cy.get('.q-menu:visible')
cy.get('.q-menu', { timeout })
.should('exist')
.should('be.visible')
.find('.q-item')
.contains(option)
.click({ force: true });