Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Plugin.Maui.UITestHelpers.Appium/HelperExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ public static bool WaitForTextToBePresentInElement(this IApp app, string automat
{
Debug.WriteLine($">>>>> {elapsed} ticks elapsed, timeout value is {timeout.Value.Ticks}");

return false;
throw new TimeoutException($"Timed out waiting for text '{text}' to be present in element with automation id '{automationId}'.");
}

Task.Delay(retryFrequency.Milliseconds).Wait();
Expand Down
Loading