/// <summary>
 /// get the Student Performance text
 /// </summary>
 /// <returns>text</returns>
 public string GetStudentPerformance()
 {
     StudentPerformanceElement.Wait(2);
     if (Driver.GetType() == typeof(DummyDriver))
     {
         StudentPerformanceElement.Text = FakeText;
     }
     return(StudentPerformanceElement.Text);
 }
 /// <summary>
 /// select the Student Performance link
 /// </summary>
 public void SelectStudentPerformance()
 {
     StudentPerformanceElement.Wait(3).Click();
 }