From 3117e8732ec44b25cb1b65a4ca444feb24092ae8 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`. --- .../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(); }); });