Disable chrome download multiple files confirmation

I’m using Chrome 49 and none of the other solutions worked for me. After some research I found a working solution: ChromeDriver createChromeDriverWithDownloadFolder(String folder) { Map<String, Object> chromePrefs = new HashMap<String, Object>(); chromePrefs.put(“profile.default_content_settings.popups”, 0); chromePrefs.put(“download.default_directory”, folder); chromePrefs.put(“profile.content_settings.exceptions.automatic_downloads.*.setting”, 1 ); chromePrefs.put(“download.prompt_for_download”, false); ChromeOptions options = new ChromeOptions(); options.setExperimentalOption(“prefs”, chromePrefs); DesiredCapabilities cap = DesiredCapabilities.chrome(); cap.setCapability(CapabilityType.ACCEPT_SSL_CERTS, true); cap.setCapability(ChromeOptions.CAPABILITY, … Read more

Disable developer mode extensions pop up in Chrome

The official way to disable the popup is this: Pack your extension: go to chrome://extensions, check Developer mode and click Pack extension Install the extension by dragging and dropping the .crx file into the chrome://extensions page. You’ll get an “Unsupported extensions disabled” popup if you try restarting Chrome at this point. Then for Windows 7 … Read more