Skip to content

Commit

Permalink
[Uptime] Fix flaky navigation to certs page in tests (elastic#66806)
Browse files Browse the repository at this point in the history
Fix flaky navigation to certs page in tests.

Fixes elastic#66778
  • Loading branch information
andrewvc committed May 15, 2020
1 parent b80bb68 commit 9f195da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/test/functional/services/uptime/navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export function UptimeNavigationProvider({ getService, getPageObjects }: FtrProv
},

goToCertificates: async () => {
await testSubjects.click('uptimeCertificatesLink', 10000);
return retry.tryForTime(60 * 1000, async () => {
return retry.try(async () => {
await testSubjects.click('uptimeCertificatesLink');
await testSubjects.existOrFail('uptimeCertificatesPage');
});
},
Expand Down

0 comments on commit 9f195da

Please sign in to comment.