This issues stems around Selenium, Jenkins, NUnit on a C# platform.
I have an application that calls a windows auth box for login. I ended up using Autoit to login and everything works great locally. When this is executed from Jenkins though, everything fails. I made some changes to the autoit script and my current failure is "Modal dialog present". (I used WinWait vs WinWaitActive)
My guess is that the exe is not being run when launched from Jenkins. Permissions Issues?
Jenkins is running on Windows 2012 R2 as a Master
C# code: System.Diagnostics.Process.Start(Path.Combine(base.BasePath, @"folder\autoitfile.exe"));
Anyone have ideas on what may be causing this?
Thanks!