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(); }
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(); }
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(); }