UITestControl.WaitForControlCondition Method (Predicate<UITestControl>)
Blocks the current thread until this control meets the specified condition, or until the default time-out expires.
Namespace: Microsoft.VisualStudio.TestTools.UITesting
Assembly: Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)
Syntax
'Declaration
Public Function WaitForControlCondition ( _
conditionEvaluator As Predicate(Of UITestControl) _
) As Boolean
public bool WaitForControlCondition(
Predicate<UITestControl> conditionEvaluator
)
public:
bool WaitForControlCondition(
Predicate<UITestControl^>^ conditionEvaluator
)
member WaitForControlCondition :
conditionEvaluator:Predicate<UITestControl> -> bool
public function WaitForControlCondition(
conditionEvaluator : Predicate<UITestControl>
) : boolean
Parameters
conditionEvaluator
Type: Predicate<UITestControl>The delegate to evaluate the condition.
Return Value
Type: Boolean
true if the condition is met before the time-out; otherwise, false.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
WaitForControlCondition Overload