From 63e2672d486178218d93567f423aadf4e6db981f Mon Sep 17 00:00:00 2001 From: Marius Dragomir Date: Tue, 5 Nov 2024 18:51:39 +0100 Subject: [PATCH] [QA]Change to skipTourIfExists in console CCS tests instead of closeHelpifExists (#199017) ## Summary With the change from the ace console to monaco console, the UI has changed and the methods as well. We're now using `skipTourIfExists` instead of `closeHelpIfExists`. (cherry picked from commit 2a9b42a0dbcf6094854194e6e8775e0d4e7a5a18) --- .../test/stack_functional_integration/apps/ccs/ccs_console.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/test/stack_functional_integration/apps/ccs/ccs_console.js b/x-pack/test/stack_functional_integration/apps/ccs/ccs_console.js index d52611dd3c6c9..5de9586440278 100644 --- a/x-pack/test/stack_functional_integration/apps/ccs/ccs_console.js +++ b/x-pack/test/stack_functional_integration/apps/ccs/ccs_console.js @@ -20,7 +20,7 @@ export default function ({ getService, getPageObjects }) { await PageObjects.common.navigateToApp('console'); await PageObjects.common.dismissBanner(); await retry.try(async () => { - await PageObjects.console.closeHelpIfExists(); + await PageObjects.console.skipTourIfExists(); }); });