Determines whether the content of this WebSocketMessage contains the specified text,
and specifying what action to take in case of failure.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
public bool VerifyContains( string text, ActionType failAction )
Parameters
- text
- Type: System String
The text to look for.
- failAction
- Type: Facilita.Fc.Runtime ActionType
The action to take if the text cannot be found.
Return Value
true if the text was found; otherwise, false.Examples
// Check that the login succeeded. if (!webSocketMessage.VerifyContains("Login successful", ActionType.ACT_ERROR)) { NextIteration(); }
See Also