/// <summary> /// get the Test Category text /// </summary> /// <returns>text</returns> public string GetTestCategory() { TestCategoryElement.Wait(2); if (Driver.GetType() == typeof(DummyDriver)) { TestCategoryElement.Text = FakeText; } return(TestCategoryElement.Text); }
/// <summary> /// select the Test Category /// </summary> public void SelectTestCategory() { TestCategoryElement.Wait(3).Click(); }