I have this Web App project (1.png) if I choose first page I'm getting to the first test (2.png) where I have some parameters, then I click the button to execute the test. When I run it on Visual Studio works fine, but after the deploy on the IIS and browsing the URL http://localhost/Project and doing the same thing, throw me an error:
"Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application." I'm not using modal dialog, this is the code I wrote in the cs file:
Report.Log(ReportLevel.Info, "Website", "Opening web site 'http://www.ranorex.com/web-testing-examples/vip/' with browser 'IE' in normal mode.", new RecordItemIndex(0));
Host.Local.OpenBrowser("http://www.ranorex.com/web-testing-examples/vip/", "IE", "",false, false);
I'm not running the test through "TestSuiteRunner.Run(typeof(Program), Environment.CommandLine);" beacuse the Environment.CommandLine throw me something like this:
"C:\\Program Files\\Common Files\\Microsoft Shared\\DevServer\\10.0\\WebDev.WebServer40.exe\" /port:57700 /path:\"C:\\Users\\colmeda\\Documents\\Visual Studio 2010\\Projects\\RanoreX\\WebApplication1\" /vpath:\"/\"
Hope you can help me

Thanks in advance.