WatiN Test: Internet Explorer not opening in windows 2008 server using Bamboo
I am using Bamboo service to execute my tests using msbuild scrip开发者_C百科t. But the Bamboo service is unable to open IE on the server.
Important: I am running Bamboo as windows service. So basically IE is unable to launch through windows service.
Any sort of help will be appreciated !!
We accomplish this by not running Bamboo as a service, but instead setting up the server to auto logon as a specific user, and have a startup script that runs Bamboo. This allows Bamboo to interact with the desktop and launch the browser.
There are some registry keys that control this under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
AutoAdminLogin = 1, DefaultUserName = {your user}, DefaultPassword = {password}
精彩评论