From b94bc7303aa9c809374b20f6bc51c39daa691a51 Mon Sep 17 00:00:00 2001 From: Alex Szabo Date: Fri, 20 Sep 2024 15:33:11 +0200 Subject: [PATCH] [8.15] [ci] skip FTRs that fail on chrome 129 (#193293) (#193559) # Backport This will backport the following commits from `main` to `8.15`: - [[ci] skip FTRs that fail on chrome 129 (#193293)](https://github.com/elastic/kibana/pull/193293) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) \n\n### Questions ?\nPlease refer to the [Backport tool\ndocumentation](https://github.com/sqren/backport)\n\n\n\nCo-authored-by: Alex Szabo "}}]}] BACKPORT--> --- test/functional/apps/dashboard/group1/url_field_formatter.ts | 3 ++- test/functional/apps/dashboard/group5/embed_mode.ts | 4 ++-- test/functional/apps/discover/group6/_time_field_column.ts | 3 ++- x-pack/test/functional/apps/lens/group6/workspace_size.ts | 5 +++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/test/functional/apps/dashboard/group1/url_field_formatter.ts b/test/functional/apps/dashboard/group1/url_field_formatter.ts index b408e0aed14d6..e8846c9ef5192 100644 --- a/test/functional/apps/dashboard/group1/url_field_formatter.ts +++ b/test/functional/apps/dashboard/group1/url_field_formatter.ts @@ -35,7 +35,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { expect(currentUrl).to.equal(fieldUrl); }; - describe('Changing field formatter to Url', () => { + // Fails in chrome 129+: https://github.com/elastic/kibana-operations/issues/199 + describe.skip('Changing field formatter to Url', () => { before(async function () { await security.testUser.setRoles(['kibana_admin', 'test_logstash_reader', 'animals']); await kibanaServer.savedObjects.cleanStandardList(); diff --git a/test/functional/apps/dashboard/group5/embed_mode.ts b/test/functional/apps/dashboard/group5/embed_mode.ts index 2da32ff5bdeac..ccdd5fed7b0d8 100644 --- a/test/functional/apps/dashboard/group5/embed_mode.ts +++ b/test/functional/apps/dashboard/group5/embed_mode.ts @@ -56,7 +56,7 @@ export default function ({ await browser.setWindowSize(1300, 900); }); - // Fails in with chrome 128+ https://github.com/elastic/kibana/issues/163207 + // Fails in chrome 128+ https://github.com/elastic/kibana-operations/issues/199 describe.skip('default URL params', () => { it('hides the chrome', async () => { const globalNavShown = await globalNav.exists(); @@ -91,7 +91,7 @@ export default function ({ }); }); - // Fails in with chrome 128+ https://github.com/elastic/kibana/issues/163207 + // Fails in chrome 128+ https://github.com/elastic/kibana-operations/issues/199 describe.skip('non-default URL params', () => { it('shows or hides elements based on URL params', async () => { const currentUrl = await browser.getCurrentUrl(); diff --git a/test/functional/apps/discover/group6/_time_field_column.ts b/test/functional/apps/discover/group6/_time_field_column.ts index 6fe4c244a08b3..f0824057daf76 100644 --- a/test/functional/apps/discover/group6/_time_field_column.ts +++ b/test/functional/apps/discover/group6/_time_field_column.ts @@ -310,7 +310,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { }); }); - it('should render selected columns correctly', async () => { + // Fails in chrome 129+: https://github.com/elastic/kibana-operations/issues/199 + it.skip('should render selected columns correctly', async () => { await PageObjects.discover.selectTextBaseLang(); await checkSelectedColumns({ diff --git a/x-pack/test/functional/apps/lens/group6/workspace_size.ts b/x-pack/test/functional/apps/lens/group6/workspace_size.ts index c06f4290721c6..1c1fcdca87ab5 100644 --- a/x-pack/test/functional/apps/lens/group6/workspace_size.ts +++ b/x-pack/test/functional/apps/lens/group6/workspace_size.ts @@ -276,7 +276,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await assertWorkspaceDimensions('600px', '375px'); }); - // Fails in chrome 128+ + // Fails in chrome 128+: https://github.com/elastic/kibana-operations/issues/199 it.skip('gauge size (absolute pixels) - major arc', async () => { await retry.try(async () => { await PageObjects.lens.switchToVisualization(GaugeShapes.ARC, 'arc'); @@ -284,7 +284,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await assertWorkspaceDimensions('600px', '430px'); }); - it('gauge size (absolute pixels) - circle', async () => { + // Fails in chrome 129+: https://github.com/elastic/kibana-operations/issues/199 + it.skip('gauge size (absolute pixels) - circle', async () => { await retry.try(async () => { await PageObjects.lens.switchToVisualization(GaugeShapes.CIRCLE, 'circular'); });