/// <summary>
 /// expand status & student comments
 /// </summary>
 public override void ExpandLink()
 {
     StatusStudentCommentsLink.Wait(2);
     StatusStudentCommentsLink.FakeAttributeClass = "AccordianClosed";
     if (StatusStudentCommentsLink.GetAttribute("class").Trim().ToLower().Contains("accordianclosed"))
     {
         StatusStudentCommentsLink.Click();
         DataCollectionReportLink.Wait(10);
     }
 }
 /// <summary>
 /// Click on data collection report link
 /// </summary>
 public TrackTestStatusPage SelectDataCollectionReport()
 {
     DataCollectionReportLink.Wait(2).Click();
     return(new TrackTestStatusPage());
 }