Interface ISdkConfiguration
Interface for defining the configuration information for the SDK.
public interface ISdkConfiguration
Properties
AutoLaunch
Indicates whether the runtime engine is set to launch on OpenText Functional Testing for Developers SDK initialization.
bool AutoLaunch { get; }
Property Value
Remarks
Relevant only for local runs. When running remotely, the value should be false.
ConnectTimeoutSeconds
Maximum time (in seconds) to try to connect to the runtime engine.
int ConnectTimeoutSeconds { get; }
Property Value
Mode
Indicates the SDK run mode. Possible values: SDKMode. Default = Replay.
SDKMode Mode { get; }
Property Value
ResponseTimeoutSeconds
Maximum time (in seconds) to wait for a response to any command sent to the runtime engine.
int ResponseTimeoutSeconds { get; }
Property Value
ServerAddress
The runtime engine URL to use for the default session.
Uri ServerAddress { get; }