diff --git a/test/cypress/support/commands.js b/test/cypress/support/commands.js index bc8158b62..6b6ebd426 100755 --- a/test/cypress/support/commands.js +++ b/test/cypress/support/commands.js @@ -112,7 +112,7 @@ function selectItem(selector, option, ariaControl, hasWrite = true) { .find((item) => item.innerText.includes(option)); if (matchingItem) return cy.wrap(matchingItem).click(); - if (hasWrite) cy.get(selector).clear().type(option, { delay: 0 }); + if (hasWrite) cy.get(selector).clear().type(option); return selectItem(selector, option, ariaControl, false); }); }