示例#1
0
        public void StartApplication()
        {
            Configuration.MainController = this;
            AddToCartButton.Initialise();
            MVTHistory.SetCLI(ref _CLI);

            _CLI.ProgramStartWelcomeMessage();
            _CLI.SetCurrentController(this);
            _CLI.WaitingForCommand();
        }
        private void PassToMVTManager(ref ServerResponse sRep)
        {
            if (_MVTManager == null)
            {
                _MVTManager = new ParserMatcher(_CLI);
            }

            sRep.Cookie = _Cookie;
            MVTHistory.UnAsssignGUIDfromFinishedTests(ref sRep);
            _MVTManager.ParseHtml(ref sRep);
        }