From f515cf56b29183a2e9005f5e36a1964a9f646cf0 Mon Sep 17 00:00:00 2001 From: Tisha Soumya Date: Wed, 15 Jan 2025 13:31:02 +0530 Subject: [PATCH] fix the clssnames in cypress --- cypress/tests/block.cy.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cypress/tests/block.cy.js b/cypress/tests/block.cy.js index 68ef28f..3da8d14 100644 --- a/cypress/tests/block.cy.js +++ b/cypress/tests/block.cy.js @@ -24,7 +24,9 @@ context('Block Acceptance Tests', () => { it('As editor I can add a Heading H3 block ', () => { cy.visit('/document/edit'); cy.addNewBlock('heading'); - cy.get('#field-tag > .react-select__control > .react-select__indicators >') + cy.get( + '#field-tag > .react-select__control > .react-select__indicators > .react-select__dropdown-indicator', + ) .trigger('click') .findByText('h3') .click();