如何在chrome 64.0中运行selenium测试脚本时自动启用闪存?

时间:2018-03-14 06:41:26

标签: google-chrome selenium flash automation

如何在chrome 64.0中运行selenium测试脚本时自动启用闪存

ChromeOptions options = new ChromeOptions();
Map<String, Object> prefs = new HashMap<String, Object>();
prefs.put("profile.default_content_setting_values.plugins", 1);
prefs.put("profile.content_settings.plugin_whitelist.adobe-flash-player", 1);
prefs.put("profile.content_settings.exceptions.plugins.*,*.per_resource.adobe-flash-player", 1);
// Enable Flash for this site
prefs.put("PluginsAllowedForUrls", "https://arlo.netgear.com");
options.setExperimentalOption("prefs", prefs);  

此代码似乎无法正常工作

0 个答案:

没有答案