我正在尝试使用Selenium中的Recaptcha
服务绕过Anti-Captcha
。
问题是,当我收到来自anticaptcha
服务的响应时,可以使用以下命令将其插入Recaptcha
中:
driver.execute_script("document.getElementById('g-recaptcha-response').style.removeProperty('display');")
driver.find_element_by_id('g-recaptcha-response').send_keys(response)
但是如何将这个响应发送到服务器?这种recaptcha
没有任何“提交”属性...