0

reCAPTCHA has limitation on browser supports however it works on IE without adding any value in compatibility mode. I have been trying multiple things with WPF application which is displaying a webpage hosted inside a Frame (or Web Browser) control. That webpage has Google reCAPTCHA V2 (I'm not a robot). It works fine in all the browsers but inside WPF app it fails to display properly.

Based on following link we need to have specific browser support https://support.google.com/recaptcha#6262736

I also made sure javascripts are enabled and working fine. Any suggestion?

rocky
  • 157
  • 3
  • 13

1 Answers1

1

I ran into this issue as well and the only thing I know how to make it work is go into the recaptcha admin console and slide the security preference to the easiest so the webBrowser control can do the image verification at the very least

Update: Found out basically because the web browser control is IE 7 by default

Use latest version of Internet Explorer in the webbrowser control

Community
  • 1
  • 1
esun
  • 41
  • 4
  • Thanks ESUN. I forgot to update this post here. updating browser emulation using reg Key is solution, You are right. Thanks – rocky Sep 22 '16 at 16:22