Skip to content

Commit efbc74c

Browse files
committed
[Functional Tests] Fix flakiness on TSVB chart on switching index patterns test (#73238)
1 parent 6187fa6 commit efbc74c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/services/combo_box.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export function ComboBoxProvider({ getService, getPageObjects }: FtrProviderCont
9090
await this.clickOption(options.clickWithMouse, selectOptions[0]);
9191
} else {
9292
// if it doesn't find the item which text starts with value, it will choose the first option
93-
const firstOption = await find.byCssSelector('.euiFilterSelectItem');
93+
const firstOption = await find.byCssSelector('.euiFilterSelectItem', 5000);
9494
await this.clickOption(options.clickWithMouse, firstOption);
9595
}
9696
} else {

0 commit comments

Comments
 (0)