Beispiel #1
0
 /// <summary>
 /// This method is pretty minimal, most of the work is done in the
 /// DefaultTestCase method below.
 /// </summary>
 /// <param name="testData">An object that describes the test</param>
 /// <returns></returns>
 public IEnumerable <TestCaseResult> Execute(TestData testData)
 {
     _driverManager.NavigateToUrl(BuildTestUrl(testData.TestName + _FileSuffix));
     return(TestElement(testData));
 }
Beispiel #2
0
 /// <summary>
 /// This method is pretty minimal, most of the work is done in the
 /// DefaultTestCase method below.
 /// </summary>
 /// <param name="testData">An object that describes the test</param>
 /// <returns></returns>
 public IEnumerable <TestCaseResult> Execute(TestData testData)
 {
     _driverManager.NavigateToUrl(BuildTestUrl(testData._TestName + _FileSuffix));
     return(testData._ControlType == null?Skip(testData._TestName) : TestElement(testData));
 }