Skip to content

Instantly share code, notes, and snippets.

@thepycoach
Last active April 22, 2021 22:57
Show Gist options
  • Select an option

  • Save thepycoach/eeef01f4594e3f9357775095bcaa4b15 to your computer and use it in GitHub Desktop.

Select an option

Save thepycoach/eeef01f4594e3f9357775095bcaa4b15 to your computer and use it in GitHub Desktop.
#changing chromedriver default options
options = Options()
options.headless = True
options.add_argument('window-size=1920x1080') #Headless = True
web = 'https://sports.tipico.de/en/live/soccer'
path = '/Users/.../chromedriver' #introduce your file's path inside '...'
#execute chromedriver with edited options
driver = webdriver.Chrome(path, options=options)
driver.get(web)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment