/// <summary> /// This methos allow us add the an screen cast whit all test cases execution /// </summary> private void AddScreenCast() { string videoPath = ConfigurationVariable.VideoPath; if (File.Exists(videoPath)) { //_currentTestCase.Log(LogStatus.Error, "<a href=\"" + "file:///" + videoPath + "\">Video</a>"); _currentTestCase.AddScreencast(videoPath); _currentTestCase.Log(LogStatus.Error, "<a href=\"" + "file:///" + videoPath + "\">Video</a>"); } }