Verifies that the title of this Response page matches the specified title,
and takes the specified action if it does not.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
public bool VerifyTitle( string title, ActionType action )
Parameters
- title
- Type: System String
The title that this Response object is expected to contain.
- action
- Type: Facilita.Fc.Runtime ActionType
The action to take if the expected title is not found.
Return Value
true if the title of this Response object matches the specified title; otherwise, false.Remarks
Note |
---|
If the method returns false, likely causes may include a dropped network connection or an error page returned by the server. |
When a script is generated from a trace, calls to VerifyTitle() are inserted after every Send method call and the page titles from the recorded responses are automatically inserted as parameters.
Examples
Response response = request.Send(); // Check the title, and move to the next iteration if we detect that the login was unsuccessful response.VerifyTitle("Login successful", ActionType.ACT_NEXT_ITERATION);
See Also