From 2448dbce7f0f06f1094a5e0ed48b86330c7a3092 Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Wed, 31 Dec 2025 17:00:47 +0100 Subject: [PATCH] test: update delete button label to "Delete row" --- cypress/integration/grid_pagination.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/integration/grid_pagination.js b/cypress/integration/grid_pagination.js index 4f75e0f0ef..6573c5d994 100644 --- a/cypress/integration/grid_pagination.js +++ b/cypress/integration/grid_pagination.js @@ -43,7 +43,7 @@ context("Grid Pagination", () => { cy.get("@table").find(".current-page-number").should("have.value", "21"); cy.get("@table").find(".total-page-number").should("contain", "21"); cy.get("@table").find(".grid-body .grid-row .grid-row-check").click({ force: true }); - cy.get("@table").findByRole("button", { name: "Delete" }).click(); + cy.get("@table").findByRole("button", { name: "Delete row" }).click(); cy.get("@table").find(".grid-body .row-index").last().should("contain", 1000); cy.get("@table").find(".current-page-number").should("have.value", "20"); cy.get("@table").find(".total-page-number").should("contain", "20");