Any tricks to get WatiN to work on Win7 / IE8?
My code is:
browser = new IE(); browser.GoTo("http://testserver"); browser.TextField(Find.ByName("txtUser")).TypeText("tyndall");
The third line never starts and I get an error message:
System.Runtime.InteropServices.COMException: RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
The second line seems to work. IE8 will appear and be redirected to the correct URL.
source share