diff --git a/changedetectionio/content_fetchers/webdriver_selenium.py b/changedetectionio/content_fetchers/webdriver_selenium.py index 72e80b15..1cd2c6e5 100644 --- a/changedetectionio/content_fetchers/webdriver_selenium.py +++ b/changedetectionio/content_fetchers/webdriver_selenium.py @@ -65,6 +65,7 @@ class fetcher(Fetcher): # request_body, request_method unused for now, until some magic in the future happens. options = ChromeOptions() + options.add_argument("--headless") if self.proxy: options.proxy = self.proxy @@ -117,4 +118,4 @@ class fetcher(Fetcher): try: self.driver.quit() except Exception as e: - logger.debug(f"Content Fetcher > Exception in chrome shutdown/quit {str(e)}") \ No newline at end of file + logger.debug(f"Content Fetcher > Exception in chrome shutdown/quit {str(e)}")