Response VerifyContains Method (String, ActionType)C# API
Determines whether the content of this Response contains the specified text, specifying what action to take in case of failure.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public virtual 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 text cannot be found.

Return Value

true if the text was found; otherwise, false.
Remarks

Note Note
The search is case-sensitive.
Examples

The following example demonstrates verifying that a string appears within the content of an HTML Response, moving to the next iteration if the text could not be found.
Response response = request.Send();

// Check that the login succeeded, and move onto the next iteration if it did not.
response.VerifyContains("Login successful", ActionType.ACT_NEXT_ITERATION);
See Also