Retries action until all assertions chained after this method pass.
public static WaitUntilAssertable<T> WaitUntil<T>(Func<T> action, string name = null)
where T : class
Retries actionAsync until all assertions chained after this method pass.
public static WaitUntilAssertable<T> WaitUntil<T>(Func<Task<T>> actionAsync, string name = null)
where T : class