c# Selenium使用ChromeOption禁用图片

问题来了,我找了一晚上的c#在selenium中要如何设置chromeOption达到禁用图片的效果,奈何各个博客都是讲python如何禁用,百度翻了n页愣是没找到答案,官方api没给实例,简直吐血。最后必应搜索上第一条搜索结果中找到了答案:

IWebDriver driver;
ChromeOptions options = new ChromeOptions();
options.AddUserProfilePreference("profile.default_content_setting_values.images", 2);
driver = new ChromeDriver(options);
以上就是c#中如何禁用显示图片功能,特此记录,后人希望不要走太多弯路!

你可能感兴趣的:(c#)