diff --git a/cypress/e2e/community-list.cy.ts b/cypress/e2e/community-list.cy.ts index 3172933405..e8678e0b9c 100644 --- a/cypress/e2e/community-list.cy.ts +++ b/cypress/e2e/community-list.cy.ts @@ -49,8 +49,8 @@ describe('Community List Page', () => { // A first must be found and validate that tag (community name) and tag (item count) exists in it cy.get('ds-community-list').find('cdk-tree-node.expandable-node').then(($nodes) => { cy.wrap($nodes).each(($node) => { - cy.wrap($node).find('a.lead').should('exist'); - cy.wrap($node).find('span.badge').should('exist'); + cy.wrap($node).find('a').should('exist'); + cy.wrap($node).find('span').should('exist'); }); }); });