Exemplo n.º 1
0
        public override void EnterClick_command([NotNull] CrawlLangParser.Click_commandContext context)
        {
            string       selector     = context.selector().GetText().Trim('\'');
            ClickCommand clickCommand = new ClickCommand(selector, _ExecutionEngine.Click);

            _CurrentBlock.Add(clickCommand);
        }
 public abstract override void ExitClick_command([NotNull] CrawlLangParser.Click_commandContext context);