gpt4 book ai didi

c# - Chrome 驱动程序 : How to disable PDF plugin

转载 作者:行者123 更新时间:2023-11-30 18:45:58 24 4
gpt4 key购买 nike

为了模仿我的 Firefox 配置文件的设置方式的功能,我需要确保禁用 Chrome 的 PDF 查看器。在网上搜索后,我找到的最接近的答案就在这里

https://code.google.com/p/chromium/issues/detail?id=528436

但是尝试此页面上的任何建议都没有成功

这是我希望工作的代码片段

                Dictionary<String, Object> plugin = new Dictionary<String, Object>();
plugin.Add("enabled", false );
plugin.Add("name", "Chrome PDF Viewer");
var options = new ChromeOptions();
options.AddUserProfilePreference("plugins.plugins_list", plugin);

driver = new ChromeDriver(options);

谁能看出我到底做错了什么?这开始成为一个真正令人沮丧的问题!

最佳答案

对于 Chrome 57,我不得不改用这一行:

options.AddUserProfilePreference("plugins.always_open_pdf_externally", true);

此外,如果您需要自己设置插件,您可以像这样找到它:

  1. 导航至 chrome://settings/content(菜单 > 设置、显示高级设置...、内容设置...)。
  2. 找到特定的首选项(仅限复选框)。
  3. 右键单击并检查复选框。
  4. 首选项名称是整个“pref”属性的值。

关于c# - Chrome 驱动程序 : How to disable PDF plugin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35298503/

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