Skip to content

Commit

Permalink
Force
Browse files Browse the repository at this point in the history
  • Loading branch information
svevang committed Jul 2, 2024
1 parent b83dba0 commit 1f4ad40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/augury.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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", () => {
Expand Down

0 comments on commit 1f4ad40

Please sign in to comment.