Skip to content

Instantly share code, notes, and snippets.

@StephenFordham
Created August 8, 2020 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StephenFordham/7c6533ecc43960a09f329257f1f354ae to your computer and use it in GitHub Desktop.
Save StephenFordham/7c6533ecc43960a09f329257f1f354ae to your computer and use it in GitHub Desktop.
headless_browser
from selenium.webdriver.chrome.options import Options
headless_options = Options()
headless_options.add_argument('--headless')
driver = webdriver.Chrome(options=headless_options)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment