VirtualUserScript ClassC# API
The VirtualUserScript class is the base class of all eggPlant Performance Script classes. All other Virtual User types are specializations of this class.
Inheritance Hierarchy

System Object
  Facilita.Fc.Runtime VirtualUserScript
    Facilita.Web WebBrowserScript

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

public abstract class VirtualUserScript : IDataDictionary
Remarks

The script wizards (recorders and generators) create Virtual User Scripts with source code files containing classes whose base class is VirtualUserScript or one of its specializations. Many of the operations (methods) of VirtualUserScript are delegated to the VirtualUser class. Access to the VirtualUser instance can be obtained via the VU property.

Note Note
All subclasses of VirtualUserScript must implement the abstract method Script , as this is the method which is called when the Virtual User Script is executed during a test. A blank Script  method is created when a Virtual User Script is created in eggPlant Performance Studio.

See Also