在Python中使用Chromedriver启用Flash
尝试使用python在chromedriver中启用Adobe Flash Player。我经历了许多尝试,包括:
prefs = {'plugins.plugins_enabled': 'Adobe Flash Player'}prefs = {'plugins.plugins_list' : [{'enabled':True,'name':'Adobe Flash
Player'}]}
prefs = {
'profile.default_content_setting_values.plugins': 1,
'profile.content_settings.plugin_whitelist.adobe-flash-player': 1
}
以及我从Google顶级搜索结果中发现的有关此问题的其他几种变体。
回答:
最终使用以下代码解决了这个问题:
prefs = { "profile.default_content_setting_values.plugins": 1,
"profile.content_settings.plugin_whitelist.adobe-flash-player": 1,
"profile.content_settings.exceptions.plugins.*,*.per_resource.adobe-flash-
player": 1,
"PluginsAllowedForUrls": "https://url.com"
}
options.add_experimental_option("prefs",prefs)
以上是 在Python中使用Chromedriver启用Flash 的全部内容, 来源链接: utcz.com/qa/414685.html