Captcha enter

Hi,
Some of the websites have the captcha.
How to handle this kind of situations
Thanks

1 Like

Hi @vivek_sivam

See if this video tutorial helps you

1 Like

Hi @KMota
In my case i have like this type of captcha
How to handle this types
image
That captcha image also changed for every time page refresh
Thanks

Hi, @vivek_sivam,

if was me…

First Read the simbol + - % x
and if
see where is empty

Value1+Value2=Valeu3

and folloing your exemple

If symbol its +
then
Get Valeu1 - Value 3 and type result into empty value

Hi @Luis261980
Can you please give an example to done the things
Which activity we use
Thanks

Hi @vivek_sivam,
Try using it as below.
step 1: get the captcha text with get text activity and store it in strVar0. for ex. it should be β€œSolve to Proceed :4 + =15”
step 2: Assign string variable strVar1= System.Text.RegulareExpressions.regex.replace(Trim(strVar0).replace(β€œ:”,β€œβ€).replace(β€œ=”,β€œβ€),β€œ[a-zA-Z0-9 ]”,β€œβ€)
So, strVar1 would be + or - or / or *
step 3: Assign two int var intVar1 and intVar2
step 4: inVar1=convert.ToInt32(Regex.replace(strVar0.split(β€œ+strVar1+β€œC)(0),”[^0-9]”,β€œβ€)) so, intVar1 would be 4
step 5: convert.ToInt32(inVar2=Regex.replace(strVar0.split(β€œ+strVar1+β€œC)(1),”[^0-9]”,β€œβ€)) so, intVar2 would be 15
step 6: assign new intVar3=If(strVar1=β€œ+”,intVar2-intVar1,if strVar1=β€œ-”,intVar2+intVar1,ifstrVar1="",intVar2/intVar1,intVar1intVar2)
step 6 should give you the value needs to be enter in captcha input text box.

hope this will work for you.
Thanks!

Hi @Deepak94
Could you please create a work flow for this
Thanks

yes.
Send me the link of it.

Hi @Deepak94

Captcha has been changed dynamically for every refresh

Yes. this is only option to handle this type of captcha

@Arslan_Ali
Which one assisted by @Deepak94 ?

Hi @vivek_sivam,

PFA Workflow and let me know if its works for you or not.

Thanks!
CaptchaResolver.zip (2.9 KB)

Hi @Deepak94
Thanks for your effort.
I’m try to execute your work flow i’m getting below error
image
Can you let me know what should i need to do. I thing i need to add browser some thing

Which browser you are using?
I used IE.
Please indicate the selectors of attach browser to entire webpage.

Thanks.

Hi @Deepak94
I have used chrome


Changed attach browser also is there anything else i need to change
image

Hi @vivek_sivam,
Ok.
Have you changed the browser type to chrome in property section?
Please try to indicate the website page

Hi @vivek_sivam,
here you go.
CaptchaResolver.zip (2.9 KB)

Thanks!

Hi @Deepak94
I have used your latest work flow getting below error. i’m doing mistakes but don’t know how to fix
image

Ok.
could you please delete the old workflow and its Project.json and copy new workflow again ?
because I did not used this selectors anywhere in the workflow.

Thanks!

@vivek_sivam
Also make sure you that you have UiPath extension installed properly.

Thanks!