I am attempting to run my selenium test suite as part of a continues integration process using cruise control.
exec workingdir="projects/AtomWeb/trunk/seleniumTest/bin/debug"
command="nunit-console"
args="seleniumTest.dll"/>
The problem is I get the following error message.
SetUp : System.InvalidOperationException : Unexpected error launching Internet Explorer. Protected Mode must be set to the same value (enabled or disabled) for all zones. (NoSuchDriver)
However when I run this though the console on the build machine with the following command it works fine.
nunit-console seleniumTest.dll
Any ideas as to why it wont work as part of the build process?