public void TestCNLLVDisableLiveModeStopScrollOnSelection()
        {
            TestCaseExternalID = "CGN-82";

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.StopScrollOnSelection(false);
            LaneViewer.ApplyLiveModeSettings();

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.VerifyStopScrollOnSelection(false);
            LaneViewer.ApplyLiveModeSettings();
        }
        public void TestCNLLVDisableOngoingDefectsKeepVisible()
        {
            TestCaseExternalID = "CGN-86";
            String seconds = "30";

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.OngoingDefectsKeepVisible(false, seconds);
            LaneViewer.ApplyLiveModeSettings();

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.VerifyOngoingDefectsKeepVisible(false, seconds);
            LaneViewer.ApplyLiveModeSettings();
        }
        public void TestCNLLVDisableAutomaticallyResumeLiveMode()
        {
            TestCaseExternalID = "CGN-84";
            String seconds = "30";

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.AutomaticallyResumeLiveMode(false, seconds);
            LaneViewer.ApplyLiveModeSettings();

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.VerifyAutomaticallyResumeLiveMode(false, seconds);
            LaneViewer.ApplyLiveModeSettings();
        }
        public void TestCNLLVEnableOngoingDefectsKeepVisible()
        {
            TestCaseID = "CGN-85";
            String seconds = "30";

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.OngoingDefectsKeepVisible(true, seconds);
            LaneViewer.ApplyLiveModeSettings();

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.VerifyOngoingDefectsKeepVisible(true, seconds);
            LaneViewer.ApplyLiveModeSettings();
        }
        public void TestCNLLVEnableAutomaticallyResumeLiveMode()
        {
            TestCaseID = "CGN-83";
            String seconds = "30";

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.AutomaticallyResumeLiveMode(true, seconds);
            LaneViewer.ApplyLiveModeSettings();

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.VerifyAutomaticallyResumeLiveMode(true, seconds);
            LaneViewer.ApplyLiveModeSettings();
        }
        public void TestCNLLVEnableLiveModeStopScrollOnSelection()
        {
            TestCaseExternalID = "CGN-81";

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.StopScrollOnSelection(true);
            LaneViewer.ApplyLiveModeSettings();

            LaneViewer.SelectDefectFromLaneViewer();
            Thread.Sleep(50000);
            LaneViewer.CloseDefectViewer();

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.VerifyStopScrollOnSelection(true);
            LaneViewer.ApplyLiveModeSettings();
        }