我使用以下代码在我的selenium脚本中添加了反验证码的chrome插件。我能够解决goolge reCAPTCHA V2,但我不知道如何用这个插件解决RotateCaptcha/FunCaptcha。
executable_path = "C:\Python27\chromedriver.exe"
os.environ["webdriver.chrome.driver"] = executable_path
chrome_options = Options()
chrome_options.add_extension(r'D:\anticaptcha.crx')
driver = webdriver.Chrome(executable_path=executable_path, chrome_options=chrome_options)
driver.get("http://stackoverflow.com")

任何帮助都将不胜感激!
https://stackoverflow.com/questions/47496680
复制相似问题