I found this option which may be useful: ```python3 from selenium.webdriver.chrome.options import Options options = Options() options.add_experimental_option("prefs", {"profile.managed_default_content_settings.images": 2}) ``` It prevents Chrome from downloading images, increasing page load speed. This may be useful in some cases...