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

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

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.VerifyStopScrollOnSelection(false);
            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();
        }