Skip to content

Commit f4747c1

Browse files
[Functional test] Increase the timeout on opening a saved visualization (#70952) (#71055)
* fixes the flakiness on hybrid visualization test * increase timeout to 20 sec to find and click the hybrid visualization Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
1 parent 6579009 commit f4747c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/page_objects/visualize_page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ export function VisualizePageProvider({ getService, getPageObjects }: FtrProvide
257257

258258
public async openSavedVisualization(vizName: string) {
259259
const dataTestSubj = `visListingTitleLink-${vizName.split(' ').join('-')}`;
260-
await testSubjects.click(dataTestSubj);
260+
await testSubjects.click(dataTestSubj, 20000);
261261
await header.waitUntilLoadingHasFinished();
262262
}
263263

0 commit comments

Comments
 (0)