web-dev-qa-db-ja.com

ChromeDriverを使用して再生する代わりにMP4ファイルをダウンロードしますか?

Chrome Web Driver 2.10 chromedriver_win32.Zip with Selenium WebDriver 2.31.2 を使用しています。

詳細ログを有効にすると、DesiredCapabilitieshttps://sites.google.com/a/chromium.org/chromedriver/capabilities )は問題なく渡されます。

[1.174][FINE]:      Initializing session with capabilities {

   "browserName": "chrome",

   "chrome.switches": [  ],

   "chromeOptions": {

      "args": [  ],

      "binary": "",

      "extensions": [  ],

      "prefs": {

         "download.default_directory": "C:\\Downloads",

         "download.directory_upgrade": "true",

         "download.extensions_to_open": "",

         "download.Prompt_for_download": "false"

      }

   },

   "javascriptEnabled": true,

   "platform": "WINDOWS",

   "version": ""

}

しかし、Chrome Webドライバーはダウンロードせずに*。mp4を再生しています。

Selenium Webdriver.NETバインディングを使用してChrome設定を設定する方法? で解決策を試しましたが、新しいChrome Webドライバーのバージョンで、 Selenium-dotnet-2.31.2 with chromedriver_win_26.0.1383. を使用しようとするとクラッシュします。

誰か提案がありますか?

9
Matija Grcic
ChromeOptions options = new ChromeOptions();
Map<String, Object> prefs = new HashMap<String, Object>();
prefs.put("profile.default_content_settings.popups", 0);
prefs.put("download.default_directory", getClass().getResource("/data/input").toString().replace("%20", " ").replace("file:","").replaceFirst("/", ""));
options.setExperimentalOption("prefs", prefs);

options.addArguments("--test-type");
capabilities.setCapability(ChromeOptions.CAPABILITY, options);
6
Prerit Jain

私はこれを以下のコードで動作させました:

System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");
String downloadFilepath = "/path/to/download";
HashMap<String, Object> chromePrefs = new HashMap<String, Object>();
chromePrefs.put("profile.default_content_settings.popups", 0);
chromePrefs.put("download.default_directory", downloadFilepath);
ChromeOptions options = new ChromeOptions();
HashMap<String, Object> chromeOptionsMap = new HashMap<String, Object>();
options.setExperimentalOptions("prefs", chromePrefs);
options.addArguments("--test-type");
DesiredCapabilities cap = DesiredCapabilities.chrome();
cap.setCapability(ChromeOptions.CAPABILITY, chromeOptionsMap);
cap.setCapability(CapabilityType.ACCEPT_SSL_CERTS, true);
cap.setCapability(ChromeOptions.CAPABILITY, options);
WebDriver driver = new ChromeDriver(cap);
3
Suresh Raja