Skip to content

Commit

Permalink
Merge branch 'dev' into issue/OSOE-819-nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
AydinE committed May 15, 2024
2 parents b761ca8 + 65177f0 commit 8155027
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Atata;
using Lombiq.Tests.UI.Constants;
using Lombiq.Tests.UI.Extensions;
using Lombiq.Tests.UI.Services;
Expand Down Expand Up @@ -131,15 +132,16 @@ private static void WaitForCardElementAndAssert(
context.DoWithRetriesOrFail(
() =>
{
if (context.Exists(elementToWaitSelector))
if (context.Exists(elementToWaitSelector.Safely()))
{
assert(context.Get(elementToWaitSelector));
return true;
}
return false;
});
},
TimeSpan.FromSeconds(10));

private enum Numeric { One = 1 }
}

0 comments on commit 8155027

Please sign in to comment.