From 91478a8b6dbbf71970b65ad73fd2cda1c94be8aa Mon Sep 17 00:00:00 2001 From: Karol Date: Mon, 9 Jan 2023 10:26:09 +0100 Subject: [PATCH] done (#2948) --- .../support/customCommands/sharedElementsOperations/selects.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/support/customCommands/sharedElementsOperations/selects.js b/cypress/support/customCommands/sharedElementsOperations/selects.js index 4e25c90fa..7190312d3 100644 --- a/cypress/support/customCommands/sharedElementsOperations/selects.js +++ b/cypress/support/customCommands/sharedElementsOperations/selects.js @@ -44,7 +44,7 @@ Cypress.Commands.add("fillAutocompleteSelect", (selectSelector, option) => { .first() .then(detachedOption => { cy.get(selectSelector).clear(); - cy.get(selectSelector).type(option); + cy.get(selectSelector).type(option, { delay: 10 }); cy.wrap(detachedOption).should(det => { Cypress.dom.isDetached(det); });