From 63a2e3349fcf87c216db0b27824776298a34cbf3 Mon Sep 17 00:00:00 2001 From: Cristhian Zanforlin Lousa Date: Mon, 17 Mar 2025 10:43:27 -0300 Subject: [PATCH] tests: update selector to match new data-testid format in chat integration test (nightly fix) (#7100) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🐛 (chatInputOutputUser-shard-1.spec.ts): fix incorrect data-testid attribute value to match updated element name for better test accuracy --- .../extended/integrations/chatInputOutputUser-shard-1.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/tests/extended/integrations/chatInputOutputUser-shard-1.spec.ts b/src/frontend/tests/extended/integrations/chatInputOutputUser-shard-1.spec.ts index f0715cfd4..3118d6bb1 100644 --- a/src/frontend/tests/extended/integrations/chatInputOutputUser-shard-1.spec.ts +++ b/src/frontend/tests/extended/integrations/chatInputOutputUser-shard-1.spec.ts @@ -172,7 +172,7 @@ test( await page.waitForTimeout(600); await page.keyboard.press("o"); await page.waitForSelector( - `[data-testid="${urlNodeId}-data-output-modal"]`, + `[data-testid="${urlNodeId}-dataframe-output-modal"]`, { timeout: 3000, },