Skip to content

Commit

Permalink
Removed wait
Browse files Browse the repository at this point in the history
  • Loading branch information
StaNov committed Jan 23, 2025
1 parent 2cdddc6 commit 3f30ec5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions e2e/cypress/common/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ export const allScopes: Scope[] = [
];

export const clickAdd = () => {
cy.wait(100);
cy.xpath(getAnyContainingAriaLabelAttribute('add')).click();
cy.xpath(getAnyContainingAriaLabelAttribute('add'))
.should('be.visible')
.click();
};

export const getPopover = () => {
Expand Down

0 comments on commit 3f30ec5

Please sign in to comment.