Код:
// //РАЗГАДЫВАЕМ КАПЧУ
System.Threading.Thread.Sleep(1 * 1000);
HtmlElement captcha = instance.GetTabByAddress("page").FindElementByAttribute("img", "src", "captcha", "regexp", 0);
if (captcha.IsVoid) return -1;
// Отправить на распознавание
string recognition = ZennoPoster.CaptchaRecognition("Anti-Captcha.dll", captcha.DrawToBitmap(false), "");
project.Variables["RecognitionResult1"].Value = recognition;
// вводим капчу в поле
HtmlElement captcha_resalt = instance.ActiveTab.FindElementByAttribute("input:text", "outerhtml", "Введите\\ код", "regexp", 0);
if (captcha_resalt.IsVoid) return -1;
// Задержка эмуляции
instance.WaitFieldEmulationDelay();
// Установить элементу значение "captcha_resalt"
captcha_resalt.SetValue(project.Variables["RecognitionResult1"].Value, instance.EmulationLevel, false);