Getting letters and numbers out of a picture

Hello, this is my first post so don’t be too harsh. I’m trying to make which creates an account on a specific site. My problem is that I don’t know if it’s possible to read a simple captcha and enter the result in a specific field. The captcha looks like this: https://i.imgur.com/nrAPhq9.png
This is obviously just an example but you should see that it isn’t that complicated. Is there a way to automate this?

Thanks in advance

You must use a third part script/software to integrare in macro code via javascript ui vision can not solve the captchas

1 Like

I’ve solved captchas via python making a Neural Network. But first you have to have tons of images to train your NN.

I’ve tried it with this snippet Interaction of Kantu and AntiCaptcha plugin | AntiCaptcha plugin solver but still struggeling. :smiley:

Okay but that’s too much effort for me. I just want to make some accounts every now and then.

You can try this

https://anti-captcha.com/mainpage

Seems with addon solve automatically captchas.

I never used it but seems solve automatically with addon installed in browser.

Thank you. I saw that also but I’m working with new chrome profiles which doesn’t have any extensions installed. My script is creating a new profile and then filling a form. Since I couldn’t find any way to have some kind of default extensions for all profiles I can’t use it.

As for the link mentioned earlier I’ve tried to change the code from “storeEval” to “executeScript” but don’t know if it’s correct. Mabye someone can fix it.
{
“Command”: “executeScript”,
“Target”: “(function(){var d=document.getElementById("anticaptcha-imacros-account-key");d||(d=document.createElement("div"),d.innerHTML="YOUR-ANTI-CAPTCHA-API-KEY",d.style.display="none",d.id="anticaptcha-imacros-account-key",document.body.appendChild(d))})();”,
“Value”: “”
},
{
“Command”: “executeScript”,
“Target”: "(function(){var s=document.createElement("script");s.src="https://cdn.antcpt.com/imacros_inclusion/recaptcha.js?\“+Math.random();document.body.appendChild(s);})();”,
“Value”: “”
}

I found another way to do this. So the post above is obsolete.

Can you post the macro code with this new method ?

I made it with the chrome extension but I will post it here when I’ve added the “save to file” part.