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 TestCNLLVEnableAutomaticallyResumeLiveMode()
        {
            TestCaseID = "CGN-83";
            String seconds = "30";

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

            LaneViewer.LoadLiveModeSettings();
            LaneViewer.VerifyAutomaticallyResumeLiveMode(true, seconds);
            LaneViewer.ApplyLiveModeSettings();
        }