Phil Lambert - 2012-02-21

I've found a workaround for this. Please see the code below...

{
Process proc = Process.Start("firefox.exe", "about:blank -jssh");
proc.WaitForInputIdle(5000);
proc.Refresh();

FireFox browser = Browser.AttachTo<FireFox>(Find.ByUrl("about:blank"));

}