Can someone help me how to automate this below captcha…
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
Use CV Get text as it seems the captcha is in Image format to avoid bot’s solving it.
Once you have the text out of the captcha, use Regex to get the numbers and operator to find the answer.
Thanks,
Ashok
Use CV get text activity and Integrate the same with ChatGPT to get answer then use type into to update the answer
Try to select bigger image around the captcha instead of UiPath assisted selection.
Thanks,
Ashok
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.