Im trying to get the captcha when you reach a limit of comments in youtube...
Im using this little code here:
HOWEVER....
it doesnt get the current captcha but another one..
Im using this little code here:
Code:
Public Function vcaptcha()
If WebBrowser1.ReadyState = WebBrowserReadyState.Complete Then
For Each Captcha As HtmlElement In WebBrowser1.Document.Images
If Captcha.GetAttribute("src").Contains("/cimg?") Then
PictureBox1.Load(Captcha.GetAttribute("src"))
End If
Next
End If
End FunctionHOWEVER....
it doesnt get the current captcha but another one..