VirtualUserScript SetProgressPoint Method (String)C# API
Sets a progress point in the VU event log.

Namespace: Facilita.Fc.Runtime
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

public void SetProgressPoint(
	string progressPoint
)

Parameters

progressPoint
Type: System String
The progress point identifier, which will appear in the Progress Point column in Test Controller.
Remarks

A progress point can be used to indicate that the execution of a script has reached a certain point, or that the application under test is in a certain state. The progressPoint text, and whether it passed or failed will be written to the VU event log, and will appear in Test Controller summary views during the test.
Examples

The following example demonstrates setting a progress point to indicate that a logon attempt has taken place, and whether it succeeded or failed.
SetProgressPoint("AtLogon");

string response = ....   // the response from the server 
if (response.Contains("Invalid User or Password"))
{
    SetProgressPoint("logon", false);   // logon failed
}
else
{
    SetProgressPoint("logon", true);   // logon OK
}
See Also