You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/bunit/Extensions/WaitForHelpers/RenderedComponentWaitForHelperExtensions.WaitForElement.cs
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ public static IReadOnlyList<IElement> WaitForElements<TComponent>(this IRendered
91
91
/// <param name="cssSelector">The CSS selector to use to search for the element.</param>
92
92
/// <exception cref="WaitForFailedException">Thrown if no elements is found matching the <paramref name="cssSelector"/> within the default timeout. See the inner exception for details.</exception>
/// <param name="timeout">The maximum time to wait for the element to appear.</param>
104
104
/// <exception cref="WaitForFailedException">Thrown if no elements is found matching the <paramref name="cssSelector"/> within the default timeout. See the inner exception for details.</exception>
/// <param name="matchElementCount">The exact number of elements to that the <paramref name="cssSelector"/> should match.</param>
117
117
/// <exception cref="WaitForFailedException">Thrown if no elements is found matching the <paramref name="cssSelector"/> within the default timeout.</exception>
/// <param name="timeout">The maximum time to wait for elements to appear.</param>
130
130
/// <exception cref="WaitForFailedException">Thrown if no elements is found matching the <paramref name="cssSelector"/> within the default timeout.</exception>
/// <param name="timeout">The maximum time to wait for elements to appear.</param>
144
144
/// <exception cref="WaitForFailedException">Thrown if no elements is found matching the <paramref name="cssSelector"/> within the default timeout.</exception>
/// <param name="cssSelector">The CSS selector to use to search for elements.</param>
156
156
/// <exception cref="WaitForFailedException">Thrown if no elements is found matching the <paramref name="cssSelector"/> within the default timeout.</exception>
@@ -49,11 +49,10 @@ public static void WaitForState<TComponent>(this IRenderedComponent<TComponent>
49
49
/// <param name="statePredicate">The predicate to invoke after each render, which must returns <c>true</c> when the desired state has been reached.</param>
50
50
/// <param name="timeout">The maximum time to wait for the desired state.</param>
51
51
/// <exception cref="WaitForFailedException">Thrown if the <paramref name="statePredicate"/> throw an exception during invocation, or if the timeout has been reached. See the inner exception for details.</exception>
@@ -94,11 +93,10 @@ public static void WaitForAssertion<TComponent>(this IRenderedComponent<TCompone
94
93
/// <param name="timeout">The maximum time to attempt the verification.</param>
95
94
/// <exception cref="WaitForFailedException">Thrown if the timeout has been reached. See the inner exception to see the captured assertion exception.</exception>
0 commit comments