Skip to content

Commit

Permalink
switch one be.visible to exist
Browse files Browse the repository at this point in the history
  • Loading branch information
stephmilovic committed Aug 29, 2024
1 parent 6c87861 commit 1bf7c29
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ export const createQuickPrompt = (
};

export const selectRule = (ruleId: string) => {
cy.get(TIMELINE_CHECKBOX(ruleId)).should('be.visible');
// not be.visible because of eui css
cy.get(TIMELINE_CHECKBOX(ruleId)).should('exist');
cy.get(TIMELINE_CHECKBOX(ruleId)).click();
};

Expand Down

0 comments on commit 1bf7c29

Please sign in to comment.