8714-devToTest #1547

Merged
alexm merged 712 commits from 8714-devToTest into test 2025-03-04 14:08:01 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit c11993c413 - Show all commits

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 });