gpt4 book ai didi

python - 如何获取 chrome 首选项参数文档,例如 profile.content_settings.exceptions.plugins

转载 作者:太空宇宙 更新时间:2023-11-03 14:14:05 25 4
gpt4 key购买 nike

在 python 环境中使用 selenium 进行爬行时,我必须在 chrome webdriver 中使用 flash。

我试图找到一个允许 Flash 的设置。

下面的两个链接是我找到的信息。

毕竟我没有找到明确的答案,我在堆栈溢出上找到了问题并解决了。

内容如下。 https://sqa.stackexchange.com/questions/30312/enable-flash-player-on-chrome-62-while-running-selenium-test

 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);

我的问题是这样的。

1) 我在哪里可以找到诸如之类的信息

  • profile.default_content_setting_values.plugins
  • profile.content_settings.plugin_whitelist.adobe-flash-player
  • rofile.content_settings.exceptions.plugins.,.per_resource.adobe-flash-player

2)如何确认其是否为官方信息?

如果您有任何其他方式查找此信息,请告知我们您的关键字。

<小时/>

由译者撰写,句子可能会很尴尬。谢谢。

最佳答案

  1. 这些是您的 Chrome 个人资料中的键。例如,如果您要打开它,您可以转到 profile.content_settings.exceptions.plugins。 https://sessionbuddy.com/chrome-profile-location/

  2. https://developer.chrome.com/extensions/contentSettings

关于python - 如何获取 chrome 首选项参数文档,例如 profile.content_settings.exceptions.plugins,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48317163/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com