mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[performance/journeys] fix journeys (#144507)
This commit is contained in:
parent
46fd8e373b
commit
48ea0297d5
2 changed files with 4 additions and 4 deletions
|
@ -19,7 +19,7 @@ export const journey = new Journey({
|
|||
await page.waitForSelector('#dashboardListingHeading');
|
||||
})
|
||||
|
||||
.step('Go to Ecommerce Dashboard with Saved Search only', async ({ page }) => {
|
||||
.step('Go to Ecommerce Dashboard with Saved Search only', async ({ page, log }) => {
|
||||
await page.click(subj('dashboardListingTitleLink-[eCommerce]-Saved-Search-Dashboard'));
|
||||
await waitForVisualizations(page, 1);
|
||||
await waitForVisualizations(page, log, 1);
|
||||
});
|
||||
|
|
|
@ -19,7 +19,7 @@ export const journey = new Journey({
|
|||
await page.waitForSelector('#dashboardListingHeading');
|
||||
})
|
||||
|
||||
.step('Go to Ecommerce Dashboard with TSVB Gauge only', async ({ page }) => {
|
||||
.step('Go to Ecommerce Dashboard with TSVB Gauge only', async ({ page, log }) => {
|
||||
await page.click(subj('dashboardListingTitleLink-[eCommerce]-TSVB-Gauge-Only-Dashboard'));
|
||||
await waitForVisualizations(page, 1);
|
||||
await waitForVisualizations(page, log, 1);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue