I'm using a suite of WatiN tests driving IE to do some periodic sanity checking for the purposes of monitoring a site.

The suite works fine when I invoke it interactively and/or when I configure the task in Task Scheduler to "Run only when the user is logged on".

However, when I set it to "Run whether the user is logged on or not", and check the "Run with highest privileges" option (WatiN can't talk to the browser satisfactorily under Windows Server 2008 and many other OSes without having admin privileges), WatiN can't communicate with it's iexplore.exe instances satisfactorily (they start, but I get a timeout exception as detailed in this post). I have added the site I'm hitting to the Trusted sites for both admin and non-admin contexts of IE. I've tried with and without elevation, with and without disabling ESC and with and with and without turning off Protected Mode for the internet zone. As my non-GUI tests are happy, I assume it's a limitation of the type of interactivity that's possible in the context of a non-interactive Scheduled Task, even when "Run with highest privileges".

Right now, my temporary workaround is to require a [TS] session to remain open at all times, ready to run the scheduled task.

If I was to persist with this, I'd at a minimum add a heartbeat notification to allow something to monitor that the task is actually getting to run [e.g., if someone logs the session off or reboots the box].

However, I'm looking for something more permanent -- something that is capable of regularly invoking my WatiN tests [run using xunit-console.x86.exe v 1.5] on my Windows Server 2008 [x64] box, just like Task Scheduler but with a proper Interactive session.

I'd prefer not to use psexec or remcom if possible, and can't see how creating a Windows Service would do anything other than add another point of failure but I'd be interested to hear of all proven solutions out there.

link|improve this question

58% accept rate
feedback

3 Answers

I was able to run Watin tests using Scheduled Task in the "Run whether user is logged on or not" mode. In my case I tracked the issue down to m_Proc.MainWindowHandle being always 0 when IE is created from a scheduled task running without a logged on user. In Watin sources this is in the IE.cs:CreateIEPartiallyInitializedInNewProcess function

My workaround is to manually enumerate top level windows and find a window with className == "IEFrame" that belongs to the process instead of using Process.MainWindowHandle property.

Here is the code snippet. All pinvoke i copied directly from Watin source.

   public static class IEBrowserHelper
    {
        private static Process CreateIExploreInNewProcess()
        {
            var arguments = "about:blank";

            arguments = "-noframemerging " + arguments;

            var m_Proc = Process.Start("IExplore.exe", arguments);
            if (m_Proc == null) throw new WatiN.Core.Exceptions.WatiNException("Could not start IExplore.exe process");

            return m_Proc;
        }
        class IeWindowFinder
        {
            #region Interop
            [DllImport("user32.dll", SetLastError = true)]
            static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);
            public delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam);
            [DllImport("user32.dll", SetLastError = true)]
            public static extern bool EnumWindows(EnumWindowsProc lpEnumFunc, IntPtr lParam);
            [DllImport("user32", EntryPoint = "GetClassNameA", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)]
            internal static extern int GetClassName(IntPtr handleToWindow, StringBuilder className, int maxClassNameLength);
            #endregion

            readonly Process IeProcess;
            IntPtr HWnd = IntPtr.Zero;

            public IeWindowFinder(Process ieProcess)
            {
                this.IeProcess = ieProcess;
            }
            public IntPtr Find()
            {
                EnumWindows(FindIeWindowCallback, IntPtr.Zero);
                return HWnd;
            }

            bool FindIeWindowCallback(IntPtr hWnd, IntPtr lParam)
            {
                uint processId;
                GetWindowThreadProcessId(hWnd, out processId);
                if (processId == IeProcess.Id)
                {
                    int maxCapacity = 255;
                    var sbClassName = new StringBuilder(maxCapacity);
                    var lRes = GetClassName(hWnd, sbClassName, maxCapacity);
                    string className = lRes == 0 ? String.Empty : sbClassName.ToString();
                    if (className == "IEFrame")
                    {
                        this.HWnd = hWnd;
                        return false;
                    }
                }
                return true;
            }
        }

        public static WatiN.Core.IE CreateIEBrowser()
        {
            Process ieProcess = CreateIExploreInNewProcess();

            IeWindowFinder findWindow = new IeWindowFinder(ieProcess);

            var action = new WatiN.Core.UtilityClasses.TryFuncUntilTimeOut(TimeSpan.FromSeconds(WatiN.Core.Settings.AttachToBrowserTimeOut))
            {
                SleepTime = TimeSpan.FromMilliseconds(500)
            };

            IntPtr hWnd = action.Try(() =>
            {
                return findWindow.Find();
            });
            ieProcess.Refresh();
            return  WatiN.Core.IE.AttachTo<WatiN.Core.IE>(
                new WatiN.Core.Constraints.AttributeConstraint("hwnd", hWnd.ToString()), 5);
        }
    }

then instead of new IE() use IEBrowserHelper.CreateIEBrowser()

link|improve this answer
Interesting. What OSes does it work on? I personally no longer have this requirement so don't feel comfortable even pondering this as a solution, so it's a long way of an Accept. I can't imagine actually taking a dependency on anything this hacky IRL but for taking the time, here's a +1 – Ruben Bartelink Mar 6 at 13:36
It works on Win 2008 R2 and on Windows 7, both x64. – shurik Mar 6 at 18:49
I have this requirement myself, started digging and after nothing that i googled worked had to dive deeper and debug Watin. It definitely works for me now and the only code change I've made described above. I do not fully understand why MainWindowHandle did not work, I also played a lot with IE and task settings but I think I reverted everything back and it still works. Thank you for +1 anyway :) my first post and first +1 here. – shurik Mar 6 at 18:55
Great solution. Works on Windows Server 2008 R2 and Windows 7 – Diego Apr 16 at 18:58
feedback

Will the answer on this question help you? link text

link|improve this answer
That's a fine Q&A, but my problem is past that - I can get them to run thousands of times. It's just that after a certain amount of time, it starts hanging, and no amount of kill or task manager action will make it come back to life - have to log off and back on again and then all is fine for another few thousand iterations... – Ruben Bartelink Jan 21 '10 at 13:43
feedback

From the command-prompt, you can schedule an interactive task like this:

C:\Users\someUser>schtasks /create /sc once /st 16:28 /tn someTask /tr cmd.exe

... where sc is the schedule, st is the start-time, tn is the taskname you choose (can be anything), and tr is the command you want to run. Obviously, for a recurring task, you would change sc to monthly, weekly, etc. Just type "schtasks /create /?" for more info.

link|improve this answer
Why do you feel this meets the just like Task Scheduler but with a proper Interactive session provisio in the question? The whole problem is that the process needs to be interactive - have you used this technique to do something similar in nature. ... or am I missing something? – Ruben Bartelink Jan 6 at 0:15
This line in my answer launches an interactive command-prompt in the console/admin session of the computer, but the cmd.exe could be substituted for a different executable. I may have misunderstood your question. – WEFX Jan 6 at 14:37
If there are 2 TS sessions open for user A and B, how do you reckon your command chooses which session to run in/ is it possible to make it choose one outside of e.g. WinXP where there is only one session. AIUI I need the process to be generated in an interactive session - i.e., a real Desktop with a real UI. i.e., the cmd.exe would need to be parented by a process in a logged in session - not just a non-interactive WindowStation. To be honest I've paged out most of this context since the question was asked though and I know I'm badly butchering the terminology in these comments! – Ruben Bartelink Jan 6 at 16:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.