diff --git a/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Customproperties.spec.ts b/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Customproperties.spec.ts index e44a48dd504..7d5e6e3c9da 100644 --- a/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Customproperties.spec.ts +++ b/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Customproperties.spec.ts @@ -236,7 +236,7 @@ const fillGlossaryTermDetails = (term, glossary, isMutually = false) => { cy.get('[data-testid="icon-url"]').scrollIntoView().type(term.icon); } if (term.color) { - cy.get('[data-testid="root/color-color-input"]') + cy.get('[data-testid="color-color-input"]') .scrollIntoView() .type(term.color); } diff --git a/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Glossary.spec.ts b/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Glossary.spec.ts index af8a8eb6b61..1397a162808 100644 --- a/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Glossary.spec.ts +++ b/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Glossary.spec.ts @@ -258,7 +258,7 @@ const fillGlossaryTermDetails = (term, glossary, isMutually = false) => { cy.get('[data-testid="icon-url"]').scrollIntoView().type(term.icon); } if (term.color) { - cy.get('[data-testid="root/color-color-input"]') + cy.get('[data-testid="color-color-input"]') .scrollIntoView() .type(term.color); } diff --git a/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Tags.spec.ts b/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Tags.spec.ts index 5d374c3d329..50396f02bb3 100644 --- a/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Tags.spec.ts +++ b/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Tags.spec.ts @@ -171,7 +171,7 @@ describe('Classification Page', { tags: 'Governance' }, () => { cy.get(descriptionBox).should('be.visible').type(NEW_TAG.description); cy.get('[data-testid="icon-url"]').scrollIntoView().type(NEW_TAG.icon); - cy.get('[data-testid="root/color-color-input"]') + cy.get('[data-testid="tags_color-color-input"]') .scrollIntoView() .type(NEW_TAG.color);