在Selenium Google ChromeDriver中停用图片

时间:2013-09-06 12:32:26

标签: c# selenium webdriver selenium-webdriver selenium-chromedriver

通过Selenium和c#?

使用Google Chrome时,如何禁用图片

我尝试了6种方法,但都没有效果。我甚至在this StackOverflow问题上尝试了答案,但我认为其中的信息已过时。

  • Chrome驱动程序:V2.2
  • Chrome版本:V29.0.1547.66米
  • 硒: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);

7 个答案:

答案 0 :(得分:11)

这是我的解决方案

IWebDriver driver;
ChromeOptions options = new ChromeOptions();
options.AddUserProfilePreference("profile.default_content_setting_values.images", 2);
driver = new ChromeDriver(options);

答案 1 :(得分:8)

对于方法1-3,我没有看到名为--disable-images listed here的Chrome开关。因此,即使代码片段是正确的,无论如何它们都无法工作。你从哪里得到那个开关?有没有参考?

对于方法4-6,我假设你从this chromdriver issue得到了这个想法。我不知道此{'profile.default_content_settings': {'images': 2}}是否仍然有效,但您可以尝试使用以下代码(最初是How to set Chrome preferences using Selenium Webdriver .NET binding?的答案,Martin Devillers提供的答案)。

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

答案 2 :(得分:7)

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

答案 3 :(得分:6)

您应该使用--blink-settings代替--disable-images

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

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

driver.get_screenshot_as_file('headless.png')

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

答案 4 :(得分:3)

我发现了简单的解决方案。这个想法来自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);

答案 5 :(得分:1)

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

请参阅:this article

答案 6 :(得分:1)

更简单的方法将是:

ChromeOptions options = new ChromeOptions();
options.addArguments("headless","--blink-settings=imagesEnabled=false");