Need Help! Webbrowser And New Recaptcha!

Stea

New member
Joined
Jul 31, 2024
Messages
3
Points
1
I'm using webbrowser control and I am having problems with the new recaptcha. I usually just download the image and then send it to decaptcher or deathbycaptcha service. Anyway I cant download the image for some reason.

My problem is that I cannot download the image. I tried clicking on it first and then try to download the image but it does not work.
I tried using a timer but it does not work also.

If anyone have any ideas, I would really appreciate it.
Thanks in advance.
 

Roberta

New member
Joined
Jun 7, 2024
Messages
3
Points
1
To download image simplest way is



Dim Client asnew WebClient
Client.DownloadFile(Source, Destination)
Client.Dispose
 
Top