Пример #1
0
 public void PRC_DocList_ClickDocLinksInControlSetWidgetFromReviewDashboard_ShouldDisplayDocsInDocList()
 {
     TestHelper.UpdateWorkflowState(WorkflowStateControlSetCompleted);
     CommonActions.NavigateToUrl(driver, Settings.PCReviewDashboardUrl);
     DocListActions.ClickRelevantDocList(driver);
     DocListActions.ClickProjectDashboardReview(driver);
     DocListActions.ClickNotRelevantDocList(driver);
     analysisSetReviewActions.IsAtDocListPage();
 }
Пример #2
0
 public void PRC_DocList_ClickStartReviewFromReviewDashboard_ShouldOpenDocReviewAndDocList()
 {
     TestHelper.UpdateWorkflowState(WorkflowStateControlSetNotStarted);
     CommonActions.NavigateToUrl(driver, Settings.PCReviewDashboardUrl);
     DocListActions.ClickStartReviewToOpenDocReview(driver);
     DocListActions.DisableAutoAdvance(driver);
     DocListActions.ClickNextDocButton(driver);
     DocListActions.ClickViewSetInDocReview(driver);
     DocListActions.ClickViewDocumentInDocList(driver);
     DocListActions.IsShouldOpenDocReviewAndDocList(driver).Should().BeTrue();
 }
Пример #3
0
 public void PRC_DocList_ClickSortAscDesc_ShouldDisplaySortedResultsInDocList()
 {
     TestHelper.UpdateWorkflowState(WorkflowStateControlSetNotStarted);
     CommonActions.NavigateToUrl(driver, Settings.PCReviewDashboardUrl);
     DocListActions.ClickStartReviewToOpenDocReview(driver);
     DocListActions.DisableAutoAdvance(driver);
     DocListActions.ClickViewSetInDocReview(driver);
     DocListActions.ClickSortAscending(driver);
     DocListActions.ClickSortDescending(driver);
     DocListActions.ShouldDisplaySortedFilteredResultsInDocList(driver).Should().BeTrue();
 }
Пример #4
0
 public void PRC_DocList_ClickExportButtonWithMore500Docs_ShouldShowJobScheduleMessage()
 {
     TestHelper.UpdateWorkflowState(WorkflowStateControlSetNotStarted);
     CommonActions.NavigateToUrl(driver, Settings.PCReviewDashboardUrl);
     DocListActions.ClickStartReviewToOpenDocReview(driver);
     DocListActions.DisableAutoAdvance(driver);
     DocListActions.ClickNextDocButton(driver);
     DocListActions.ClickViewSetInDocReview(driver);
     DocListActions.ClickExportCsv(driver);
     DocListActions.ShouldShowJobScheduleMessage(driver).Should().BeTrue();
 }
Пример #5
0
 public void PRC_DocList_ClickStartReviewFromReviewDashboard_ShouldDoNavigationBtwDocsInDocReview()
 {
     TestHelper.UpdateWorkflowState(WorkflowStateControlSetNotStarted);
     CommonActions.NavigateToUrl(driver, Settings.PCReviewDashboardUrl);
     DocListActions.ClickStartReviewToOpenDocReview(driver);
     DocListActions.DisableAutoAdvance(driver);
     DocListActions.ClickNextDocButton(driver);
     DocListActions.ClickLastDocButton(driver);
     DocListActions.ClickPreviousDocButton(driver);
     DocListActions.ClickFirstDocButton(driver);
     DocListActions.ShouldDoNavigationBtwDocsInDocReview(driver).Should().BeTrue();
 }