Is it possible to autosubmit a Login form with anonymous user account?

$(document).ready(function() {
$(‘#pw’).val(“anonymous”);
$(“#login”).val(“test@test.com”);
setTimeout(function() { $(“#loginForm”).submit(); }, .1);
}

Using v3 Recaptcha

This works in Firefox, but fails in Edge & Chrome.

Is a Content Security Policy issue? I have none set. Or is it a Recaptcha issue?

Change the Timeout seconds to 2000 fixes it, but I’m not sure why. What has to load to allow the form to submit successfully? Can I manually trigger the recaptcha?

Hi Shannon,

Apologies for the delay.
The form should be reimplemented to address the issue.
The order should be as follows: reCAPTCHA - response - form submission.