Skip to content

Commit

Permalink
fix exists or fail check (elastic#118499)
Browse files Browse the repository at this point in the history
  • Loading branch information
flash1293 authored and kibanamachine committed Nov 15, 2021
1 parent 6172972 commit 0e766c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/test/functional/apps/lens/dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await PageObjects.lens.goToTimeRange();
await retry.try(async () => {
await clickInChart(6, 5); // hardcoded position of bar, depends heavy on data and charts implementation
await testSubjects.existOrFail('applyFiltersPopoverButton');
await testSubjects.existOrFail('applyFiltersPopoverButton', { timeout: 2500 });
});

await retry.try(async () => {
Expand Down

0 comments on commit 0e766c1

Please sign in to comment.