please find the image above so Im getting gRecaptchaResponse data but how to pass in the button check the image below
you would first need to click on the checkbox. you are using type into activity on a checkbox it will fail
if i using click activity how do i pass the gcaptcha response over there?
how are you getting the gcpathca response is it a package or an api. if an api could you paste the documentation here.
Usually they give a response and you need to inject that response using javascript
Im using API please find the documentation url below
In developer’s console, find
textarea
withid="g-recaptcha-response"
, and put there received code. Then, click theCheck
button.
you can use inject JS activity code will be something like
document.getElementById('g-recaptcha-response').value = 'your received code here';
you might have to modify it