Skip to content

Commit

Permalink
split steps
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Jun 29, 2023
1 parent 9088f35 commit be80b2b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion x-pack/performance/journeys/many_fields_transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ export const journey = new Journey({
await page.waitForSelector(subj('transformCreateFirstButton'));
await page.waitForSelector(subj('globalLoadingIndicator-hidden'));
})
.step('Go to Transform Wizard', async ({ page }) => {
.step('Go to data view selection', async ({ page }) => {
const createButtons = page.locator(subj('transformCreateFirstButton'));
await createButtons.first().click();
await page.waitForSelector(subj('savedObjectsFinderTable'));
})
.step('Go to Transform Wizard', async ({ page }) => {
await page.click(subj('savedObjectTitleindices-stats*'));
// Extended the timeout, this one tracks a known issue with slow data grid performance with many fields
await page.waitForSelector(subj('transformIndexPreview loaded'), { timeout: 120000 });
Expand Down

0 comments on commit be80b2b

Please sign in to comment.