From 6ec31262d4d0a26321025230f3f0ff1d72363752 Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Tue, 19 Nov 2024 01:54:53 +1100 Subject: [PATCH] [8.x] [Console] Avoid console url redirection (#199966) (#200558) # Backport This will backport the following commits from `main` to `8.x`: - [[Console] Avoid console url redirection (#199966)](https://github.com/elastic/kibana/pull/199966) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) Co-authored-by: Ignacio Rivas --- test/functional/apps/console/_text_input.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/apps/console/_text_input.ts b/test/functional/apps/console/_text_input.ts index c2580d2dbb06..0e286434fa8d 100644 --- a/test/functional/apps/console/_text_input.ts +++ b/test/functional/apps/console/_text_input.ts @@ -32,7 +32,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { describe('with a data URI in the load_from query', () => { it('loads the data from the URI', async () => { await PageObjects.common.navigateToApp('console', { - hash: '#/console?load_from=data:text/plain,BYUwNmD2Q', + hash: '#/console/shell?load_from=data:text/plain,BYUwNmD2Q', }); await retry.try(async () => { @@ -44,7 +44,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { describe('with invalid data', () => { it('shows a toast error', async () => { await PageObjects.common.navigateToApp('console', { - hash: '#/console?load_from=data:text/plain,BYUwNmD2', + hash: '#/console/shell?load_from=data:text/plain,BYUwNmD2', }); await retry.try(async () => {