Captcha......---

Can someone help me how to automate this below captcha…

Hi @Pushpendra_kowthavarapu

Use Get Text activity to get the text and then by using regex extract the 2 numbers then do subtract those two numbers.

Regards,

getting blank text when i tried to do

@Pushpendra_kowthavarapu,

Use CV Get text as it seems the captcha is in Image format to avoid bot’s solving it.

image

Once you have the text out of the captcha, use Regex to get the numbers and operator to find the answer.

Thanks,
Ashok :slight_smile:

Use CV get text activity and Integrate the same with ChatGPT to get answer then use type into to update the answer


I was getting this error

@Pushpendra_kowthavarapu,

Try to select bigger image around the captcha instead of UiPath assisted selection.

image

Thanks,
Ashok :slight_smile:

@Pushpendra_kowthavarapu

Try with Get OCR Text activity

(?<=\w+\s+)\d+

(?<=\-\s+)\d+

Num1=System.Text.RegularExpressions.Regex.Match(Input,"(?<=\w+\s+)\d+").Value
Num2=System.Text.RegularExpressions.Regex.Match(Input,"(?<=\-\s+)\d+").Value
Subt=(CInt(Num1)-CInt(Num2)).ToString

Regards,

Can you confirm if captcha is only about subtraction or mathematical expression? Because I see @lrtetala’s reponses are assuming other captchas will look like this. If that was the case, I would say this is not very effective captcha.