From dbbd09058c0cbefef48944600057694f25be2f5e Mon Sep 17 00:00:00 2001 From: Robert Oskamp Date: Wed, 27 May 2020 13:11:17 +0200 Subject: [PATCH] Add welcome screen disabling to common page (#66713) This PR adds logic to disable the welcome screen to the common_page which is already used in the x-pack security_page. --- test/functional/page_objects/common_page.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/functional/page_objects/common_page.ts b/test/functional/page_objects/common_page.ts index 8c60bc8c5c2f87..7810cce5c78bbb 100644 --- a/test/functional/page_objects/common_page.ts +++ b/test/functional/page_objects/common_page.ts @@ -73,6 +73,11 @@ export function CommonPageProvider({ getService, getPageObjects }: FtrProviderCo const loginPage = currentUrl.includes('/login'); const wantedLoginPage = appUrl.includes('/login') || appUrl.includes('/logout'); + // Disable the welcome screen. This is relevant for environments + // which don't allow to use the yml setting, e.g. cloud production. + // It is done here so it applies to logins but also to a login re-use. + await browser.setLocalStorageItem('home:welcome:show', 'false'); + if (loginPage && !wantedLoginPage) { log.debug('Found login page'); if (config.get('security.disableTestUser')) {