diff --git a/test/functional/services/find.js b/test/functional/services/find.js index 16a18a67978a..753e81fce49b 100644 --- a/test/functional/services/find.js +++ b/test/functional/services/find.js @@ -64,7 +64,7 @@ export function FindProvider({ getService }) { return await retry.try(async () => { const element = await getElementFunction(); // Calling any method forces a staleness check - element.isEnabled(); + await element.isEnabled(); return element; }); } @@ -75,7 +75,7 @@ export function FindProvider({ getService }) { return await retry.try(async () => { const element = await getElementFunction(leadfootWithTimeout); // Calling any method forces a staleness check - element.isEnabled(); + await element.isEnabled(); return element; }); } finally {