Class VideoStartingEventArgs
Event arguments for the VideoStarting event. Allows override if recording should be started and setting a custom file name.
public class VideoStartingEventArgs : EventArgs
- Inheritance
-
VideoStartingEventArgs
- Inherited Members
Constructors
VideoStartingEventArgs()
public VideoStartingEventArgs()
Properties
RelatedActivity
The activity in the current TestReport related to this video (e.g. a TestCaseActivity)
public Activity RelatedActivity { get; set; }
Property Value
StartVideo
Determines whether the video recording should actually start.
public bool StartVideo { get; set; }
Property Value
VideoFileName
The file name for the newly recorded video. A relative path is based on the report location.
public string VideoFileName { get; set; }
Property Value
Remarks
The file is overwritten if it already exists, and the specified directory is created if it doesn't.