diff --git a/x-pack/performance/journeys/data_stress_test_lens.ts b/x-pack/performance/journeys/data_stress_test_lens.ts index 1ea3094b15fcd..bc27506afabb2 100644 --- a/x-pack/performance/journeys/data_stress_test_lens.ts +++ b/x-pack/performance/journeys/data_stress_test_lens.ts @@ -6,7 +6,7 @@ */ import { Journey } from '@kbn/journeys'; -import { waitForChrome, waitForVisualizations } from '../utils'; +import { waitForVisualizations } from '../utils'; export const journey = new Journey({ kbnArchives: ['test/functional/fixtures/kbn_archiver/stress_test'], @@ -14,7 +14,5 @@ export const journey = new Journey({ }).step('Go to dashboard', async ({ page, kbnUrl, kibanaServer }) => { await kibanaServer.uiSettings.update({ 'histogram:maxBars': 100 }); await page.goto(kbnUrl.get(`/app/dashboards#/view/92b143a0-2e9c-11ed-b1b6-a504560b392c`)); - - await waitForChrome(page); await waitForVisualizations(page, 1); });