和Watin一起如何阻止浏览器加载图片?

Kei*_*las 4 watin

只是想看看我是否可以阻止Watin/IE加载图像,这样整个过程会更快?

Sam*_*ick 6

您可以通过Internet Explorer选项停止加载图像.

要在IE中禁用图像:

  1. 选择工具 - > Internet选项
  2. 转到"高级"选项卡
  3. 向下滚动到多媒体设置部分
  4. 取消选中"显示图片"框

这也可以通过更改适当的注册表设置以编程方式实现.例如

RegistryKey ieKey = Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Internet Explorer\Main");
ieKey.SetValue("Display Inline Images", "no");
Run Code Online (Sandbox Code Playgroud)