18

通过 Selenium 和 c# 使用 Google chrome 时如何禁用图像?

我尝试了 6 种方法,但都没有奏效。我什至尝试过这个StackOverflow 问题的答案,但我认为其中的信息已经过时。

  • 铬驱动程序:V2.2
  • 铬版:V29.0.1547.66 m
  • 硒:V2.35

我所做的所有尝试都不会导致异常,它们运行正常但仍显示图像:

尝试1:

ChromeOptions co = new ChromeOptions();
co.AddArgument("--disable-images");
IWebDriver driver = new ChromeDriver(co);

尝试2:

DesiredCapabilities capabilities = DesiredCapabilities.Chrome();
capabilities.SetCapability("chrome.switches", new string[1] { "disable-images" });

尝试 3:

ChromeOptions co = new ChromeOptions();
co.AddAdditionalCapability("chrome.switches", new string[1] { "disable-images" });

尝试4:

var imageSetting = new Dictionary<string, object>();
imageSetting.Add("images", 2);
Dictionary<string, object> content = new Dictionary<string, object>();
content.Add("profile.default_content_settings", imageSetting);
var prefs = new Dictionary<string, object>();
prefs.Add("prefs", content);
var options = new ChromeOptions();
var field = options.GetType().GetField("additionalCapabilities", BindingFlags.Instance | BindingFlags.NonPublic);
if (field != null)
{
    var dict = field.GetValue(options) as IDictionary<string, object>;
    if (dict != null)
        dict.Add(ChromeOptions.Capability, prefs);
}

尝试 5:

ChromeOptions options = new ChromeOptions();
options.AddAdditionalCapability("profile.default_content_settings", 2);

尝试 6:

Dictionary<String, Object> contentSettings = new Dictionary<String, Object>();
contentSettings.Add("images", 2);
Dictionary<String, Object> preferences = new Dictionary<String, Object>();
preferences.Add("profile.default_content_settings", contentSettings);
DesiredCapabilities caps = DesiredCapabilities.Chrome();
caps.SetCapability("chrome.prefs", preferences);
4

7 回答 7

19

这是我的解决方案

IWebDriver driver;
ChromeOptions options = new ChromeOptions();
options.AddUserProfilePreference("profile.default_content_setting_values.images", 2);
driver = new ChromeDriver(options);
于 2016-10-15T10:05:18.503 回答
15

您应该使用--blink-settings而不是--disable-images

options.add_argument('--blink-settings=imagesEnabled=false')

这也适用于无头模式。设置配置文件在无头模式下不起作用。您可以通过屏幕截图进行验证:

driver.get_screenshot_as_file('headless.png')

注意:我使用 python 和 selenium,但我认为它应该很容易转移到 c#。

于 2017-12-20T02:21:49.107 回答
8

对于您的方法 1-3,我没有看到--disable-images 此处列出的 Chrome 开关。因此,即使代码片段是正确的,它们无论如何都不会起作用。你从哪里弄来的那个开关?有参考吗?

对于方法 4-6,我假设您从这个 chromdriver issue中得到了想法。我不知道这{'profile.default_content_settings': {'images': 2}}是否仍然有效,但您可以尝试使用以下代码(最初是如何使用 Selenium Webdriver .NET 绑定设置 Chrome 首选项的答案?,答案由Martin Devlers 提供) .

public class ChromeOptionsWithPrefs: ChromeOptions {
    public Dictionary<string,object> prefs { get; set; }
}

public static void Initialize() {
    var options = new ChromeOptionsWithPrefs();
    options.prefs = new Dictionary<string, object> {
        { "profile.default_content_settings", new Dictionary<string, object>() { "images", 2 } }
    };
    var driver = new ChromeDriver(options);
}
于 2013-09-07T10:03:01.503 回答
8

使用http://chrome-extension-downloader.com/下载“块图像”扩展程序(https://chrome.google.com/webstore/detail/block-image/pehaalcefcjfccdpbckoablngfkfgfgj?hl=en-GB)。该扩展程序首先防止图像被下载。现在只需使用以下语句加载它:

    var options = new ChromeOptions();

    //use the block image extension to prevent images from downloading.
    options.AddExtension("Block-image_v1.0.crx");

    var driver = new ChromeDriver(options);
于 2013-09-07T14:34:16.253 回答
6

更简单的方法是:

ChromeOptions options = new ChromeOptions();
options.addArguments("headless","--blink-settings=imagesEnabled=false");
于 2018-12-21T07:02:21.367 回答
4

我找到了简单的解决方案。这个想法来自Python:Disable images in Selenium Google ChromeDriver

var service = ChromeDriverService.CreateDefaultService(@WebDriverPath);

var options = net ChromeOptions();
options.AddUserProfilePreference("profile.managed_default_content_settings.images", 2);
IWebDriver Driver = new ChromeDriver(service, options);
于 2016-08-17T07:40:35.157 回答
1

我建议您创建一个新配置文件,自定义此配置文件以使其不加载图像,并将此配置文件用作 chromeOption 来设置您的驱动程序。

见:这篇文章

于 2015-05-01T02:55:37.887 回答