Created
April 2, 2018 16:24
-
-
Save ewauq/6b63470fa2fa586858b6c5e976d5d5be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
from selenium.webdriver.chrome.options import Options | |
chrome_options = Options() | |
chrome_options.add_extension('<nom de votre extension>.crx') | |
browser = webdriver.Chrome(executable_path=r"<votre exécutable ChromeDriver>", chrome_options=chrome_options) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment