public void PRC_CreateControlSet_ClickCancelInCreateControlSetPopUp_ShouldNotCreateControlSet()
        {
            CommonActions.NavigateToUrl(driver, Settings.PCAdminDashboardUrl);

            CommonActions.WaitForLoadPcDashboardPage(driver);

            CreateControlsetActions.ClickStartButtonToOpenCreateControlsetPopup(driver);

            CreateControlsetActions.CheckControlSetPopup(driver);

            CreateControlsetActions.ClickCancelButtonInCreateControlsetPopup(driver);

            CreateControlsetActions.CheckStatusForCreateControlset(driver);

            CreateControlsetActions.SwitchToMainWindow(driver);
        }
        public void PRC_CreateControlSet_VerifyNonDefaultSampleSizeCalculationInCreateControlSetPopup_ShouldPass()
        {
            CommonActions.NavigateToUrl(driver, Settings.PCAdminDashboardUrl);

            CommonActions.WaitForLoadPcDashboardPage(driver);

            CreateControlsetActions.ClickStartButtonToOpenCreateControlsetPopup(driver);

            CreateControlsetActions.CheckControlSetPopup(driver);

            CreateControlsetActions.ChangeConfidenceLevelSelection(driver);

            CreateControlsetActions.ChangeMarginOfErrorSelection(driver);

            CreateControlsetActions.CheckSampleSizeReCalculatedValue(driver);

            CreateControlsetActions.SwitchToMainWindow(driver);
        }
        public void PRC_CreateControlSet_ClickOkInCreateControlSetPopUp_ShouldCreateControlSet()
        {
            CommonActions.NavigateToUrl(driver, Settings.PCAdminDashboardUrl);

            CommonActions.WaitForLoadPcDashboardPage(driver);

            CreateControlsetActions.ClickStartButtonToOpenCreateControlsetPopup(driver);

            CommonActions.WaitForLoadPage(driver);

            CreateControlsetActions.CheckControlSetPopup(driver);

            CreateControlsetActions.ClickOkButtonToCreateControlset(driver);

            CommonActions.WaitForLoadPage(driver);

            CommonActions.RefreshMainWindow(driver);

            CreateControlsetActions.CheckNextStatusIsReviewControlset(driver);

            CreateControlsetActions.SwitchToMainWindow(driver);
        }