I would like to know how I can prevent Internet Explorer from firing up every time I run my console application which uses WatiN for testing live sites.
When I run m
Try:
using (IE ie = new IE("http://somesite.com/")) { ie.ShowWindow(NativeMethods.WindowShowStyle.Hide); .... }