- Регистрация
- 29.08.2011
- Сообщения
- 9
- Благодарностей
- 0
- Баллы
- 1
i have tried everything that i know and i keep getting errorInCaptchaRecognition from my c# and php project both in code creator and zennoPoster, is there some otherway to integrate capcher into c# and php project. below are the code for c# can somebody tell me what i am doing wrong i can get it working in code creator deburg mode but never in zennoposter what i get is errorInCaptchaRecognition
// Captcha recognition
he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 0).FindChildByAttribute("img", "fulltag", "img", "text", 0);
if (he.IsVoid) return -1;
var res = ZennoPoster.CaptchaRecognition("DeathByCaptcha.dll", he, "");
// Setting captcha text
he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 0).FindChildByName("security_code");
if (he.IsVoid) {
he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 0).FindChildById("security_code");
}
if (he.IsVoid) {
he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 0).FindChildByAttribute("input:text", "fulltag", "input:text", "text", 10);
}
if (he.IsVoid) return -1;