小编典典

在Python中使用Chromedriver启用Flash

selenium

尝试使用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顶级搜索结果中发现的有关此问题的其他几种变体。


阅读 482

收藏
2020-06-26

共1个答案

小编典典

最终使用以下代码解决了这个问题:

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)
2020-06-26