Just trying to see if I can stop Watin / IE from loading images so the whole thing goes a lot faster?
You can stop images from being loaded via the Internet Explorer options.
To disable images in IE:
This could also be achieved programmatically by changing the appropriate registry setting. e.g.
RegistryKey ieKey = Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Internet Explorer\Main");
ieKey.SetValue("Display Inline Images", "no");