Exemplo n.º 1
0
 public void WhenIAmOnTheExhibitPage()
 {
     _casesPage = _homePage.GoToCases();
     //Select the case with the exhibit that was processed in the previous step
     _exhibitsPage = _casesPage.SelectCaseByPoliceFileNumber(_casePoliceNumber);
     _exhibitsPage.SelectProcessedExhibitFromListByEclExhibitNumber(_eclExhibitNumber);
 }
 public void ThenProcessingStatisticsDetailsAre(string imageNum, string imageLabel, string multimediaNum, string multimediaLabel, string contactNumber, string contactLabel, string documentNum, string documentLabel)
 {
     _exhibitsPage = _homePage.GoToCaseExhibits(_casePoliceNumber);
     _exhibitsPage.SelectProcessedExhibitFromListByEclExhibitNumber(_eclExhibitNumber);
     SelectFirstMedia();
     AssertProcessingStatisticsCategoryLabels(imageLabel, multimediaLabel, contactLabel, documentLabel);
     AssertProcessingStatisticsCategoryFileNumber(imageNum, multimediaNum, contactNumber, documentNum);
 }