Beispiel #1
0
        /// <summary>
        /// Performs the playback of actions in this module.
        /// </summary>
        /// <remarks>You should not call this method directly, instead pass the module
        /// instance to the <see cref="TestModuleRunner.Run(ITestModule)"/> method
        /// that will in turn invoke this method.</remarks>
        void ITestModule.Run()
        {
            Mouse.DefaultMoveTime        = 300;
            Keyboard.DefaultKeyPressTime = 100;
            Delay.SpeedFactor            = 1.0;

            var CurrentTestCase = TestSuite.Current.GetTestCase("CheckDevicDTM");

            var rangeSelected = DataRange.TryParse(AutomIDDataRange);

            Report.Info(rangeSelected.ToString());
            if (rangeSelected != null)
            {
                CurrentTestCase.DataContext.SetRange(DataRange.TryParse(AutomIDDataRange));
            }
        }