Last active
April 22, 2021 22:57
-
-
Save thepycoach/eeef01f4594e3f9357775095bcaa4b15 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #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