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 4 additions and 4 deletions
Showing only changes of commit dbea92cb53 - Show all commits

View File

@ -148,10 +148,10 @@ Cypress.Commands.add('retryCheckItem', (ariaControl, selector, option, retries)
.first();
cy.wrap(itemAClickear).click(); // Haz clic en el elemento encontrado
} else {
throw new Error('Option not found → ', option);
// cy.get(selector, { timeout }).clear().type(option);
// let retries = 0;
// cy.retrySelectOption(selector, option, timeout, retries);
// throw new Error('Option not found → ', option);
cy.get(selector, { timeout }).clear().type(option);
let retries = 0;
cy.retrySelectOption(selector, option, timeout, retries);
}
});
});