Created
January 20, 2020 13:58
-
-
Save ahmedbesbes/830c57d1a6042b090403c1a6684075ce 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
options = Options() | |
options.add_argument('--headless') | |
options.add_argument('--no-sandbox') | |
options.add_argument('start-maximized') | |
options.add_argument('disable-infobars') | |
options.add_argument("--disable-extensions") | |
prefs = {"profile.managed_default_content_settings.images": 2} | |
options.add_experimental_option("prefs", prefs) | |
driver = webdriver.Chrome('./driver/chromedriver', options=options) | |
timeout = 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment