From 2e44c0135eac77ab9cbab9169261ef8f75b37e5e Mon Sep 17 00:00:00 2001 From: Enzo Martellucci Date: Fri, 25 Apr 2025 20:13:12 +0200 Subject: [PATCH] fix Cy test --- .../cypress-base/cypress/e2e/explore/control.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/cypress-base/cypress/e2e/explore/control.test.ts b/superset-frontend/cypress-base/cypress/e2e/explore/control.test.ts index 2e1e7f6c820..878387fb470 100644 --- a/superset-frontend/cypress-base/cypress/e2e/explore/control.test.ts +++ b/superset-frontend/cypress-base/cypress/e2e/explore/control.test.ts @@ -40,11 +40,11 @@ describe('Datasource control', () => { // create new metric cy.get('[data-test="crud-add-table-item"]', { timeout: 10000 }).click(); cy.wait(1000); - cy.get('.antd5-table-body [data-test="editable-title-input"]') + cy.get('.antd5-table-body [data-test="textarea-editable-title-input"]') .first() .click(); - cy.get('.antd5-table-body [data-test="editable-title-input"]') + cy.get('.antd5-table-body [data-test="textarea-editable-title-input"]') .first() .focus(); cy.focused().clear({ force: true });