diff --git a/scrape.py b/scrape.py index 0eb328b..df40c72 100755 --- a/scrape.py +++ b/scrape.py @@ -23,7 +23,9 @@ print('NetworkX initialised') ##### Set up WebDriver with Chrome ########################## chrome_options = Options() -chrome_options.add_argument('--headless') # Start headless so we can run on a server overnight + +# Start headless so we can run on a server overnight +chrome_options.add_argument('--headless') # Disable image loading, courtesy of rocky qi # Found at https://stackoverflow.com/a/31581387, accessed on 2018/09/17 at 12:54 UTC