Skip to content

Instantly share code, notes, and snippets.

@gsnedders
Created December 1, 2017 02:19
Show Gist options
  • Save gsnedders/416bb0803032fe15fbbcf894e84b4f8c to your computer and use it in GitHub Desktop.
Save gsnedders/416bb0803032fe15fbbcf894e84b4f8c to your computer and use it in GitHub Desktop.
options = webdriver.chrome.options.Options()
prefs = {
"webkit.webprefs.fonts.fixed.Zyyy": "Ahem",
"webkit.webprefs.fonts.sansserif.Zyyy": "Ahem",
"webkit.webprefs.fonts.serif.Zyyy": "Ahem",
"webkit.webprefs.fonts.standard.Zyyy": "Ahem"
}
options.add_experimental_option("prefs", prefs)
options.add_argument('headless')
options.binary_location = '/usr/bin/google-chrome-unstable'
wd = webdriver.Chrome(chrome_options=options)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment