Skip to content

Instantly share code, notes, and snippets.

View JasonCrowe's full-sized avatar

Jason Crowe JasonCrowe

  • North Missouri
View GitHub Profile
@JasonCrowe
JasonCrowe / load_extention_recaptcha_solver.py
Created July 2, 2020 10:55
Sample code to show loading an extension in selenium to solve recaptcha
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = webdriver.ChromeOptions()
options.add_extension('./extension_6_0_0_0.zip')
###############
# ReCaptcha Solver CRX 6.0
# https://stackoverflow.com/questions/34222412/load-chrome-extension-using-selenium/52420595#52420595
###############