How to submit google captcha without submit button? How to submit google captcha without submit button? selenium selenium

How to submit google captcha without submit button?


I resolved it with this

driver.execute_script("redemptionValidation(\"" + capHome + "\")")


Try using send_keys(Keys.RETURN) instead of clicking the submit button.

Edit: Sending the RETURN key where you would normally click the submit button in your code should yield the same result.