AssertEx.WaitUntil<T> method (1 of 2)

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

See Also


AssertEx.WaitUntil<T> method (2 of 2)

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

See Also