web-dev-qa-db-ja.com

Selenium GoogleChromeDriverで画像を無効にする

Seleniumとc#で画像を使用する場合、Google chromeで画像を無効にするにはどうすればよいですか?

私は6つの方法を試しましたが、どれもうまくいきませんでした。 this StackOverflowの質問で答えを試しましたが、その中の情報は古くなっていると思います。

  • Chromeドライバー:V2.2
  • Chromeバージョン: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);
14
Fidel

http://chrome-extension-downloader.com/ を使用して「BlockImage」拡張機能をダウンロードします( 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);
8
Fidel

これが私の解決策です

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

メソッド1〜3の場合、Chromeスイッチと呼ばれる--disable-imagesここにリストされています )が表示されません。したがって、コードスニペットが正しい場合でも、何があっても動作しません。どこでそのスイッチを入手しましたか?参照はありますか?

方法4〜6については、 このクロムドライバーの問題 からアイデアを得たと思います。この{'profile.default_content_settings': {'images': 2}}がまだ有効かどうかはわかりませんが、次のコードで試してみることができます(元々は 設定方法Chrome Selenium Webdriver .NETバインディングを使用した設定? 、回答は 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);
}
8
Yi Zeng

次の方法で、--blink-settingsの代わりに--disable-imagesを使用する必要があります。

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

これはヘッドレスモードでも機能します。プロファイルの設定は、ヘッドレスモードでは機能しません。スクリーンショットで確認できます。

driver.get_screenshot_as_file('headless.png')

注:Seleniumでpythonを使用していましたが、c#に簡単に転送できるはずです。

6
ryan

私は簡単な解決策を見つけました。このアイデアは Python: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);
3
Jemin Lee

新しいプロファイルを作成し、画像が読み込まれないようにこのプロファイルをカスタマイズし、このプロファイルをchromeOptionとして使用してドライバーを設定することをお勧めします。

参照: この記事

1
VMh

より簡単なアプローチは、次のとおりです。

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