From 1f4ad40305e9d86b60d9a79682ef30d0c1c289c1 Mon Sep 17 00:00:00 2001 From: Sam Vevang Date: Tue, 2 Jul 2024 13:16:41 -0500 Subject: [PATCH] Force --- cypress/e2e/augury.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/augury.cy.ts b/cypress/e2e/augury.cy.ts index 995d4d6..cd7cef8 100644 --- a/cypress/e2e/augury.cy.ts +++ b/cypress/e2e/augury.cy.ts @@ -145,7 +145,7 @@ Cypress.Commands.add("getInventoryTypeSelect", () => {}); Cypress.Commands.add("selectSlimSelect", (selector, value) => { cy.get(`${selector} + .ss-main`).click(); // Open the dropdown cy.contains(value); // Confirm the option is present - cy.get(".ss-option").contains(value).click(); // Select the option + cy.get(".ss-option").contains(value).click({ force: true }); // Select the option }); Cypress.Commands.add("getAvailabilityResults", () => {