vote up 0 vote down star
2

I am trying to apply some WatiN UI tests to my new ASP .Net MVC application, running the WatiN tests through MbUnit, but am having some difficulties.

If I follow the instructions (exactly) on this page, then the google homepage loads, up the text is inserted, the search is done and the test passes. (no problem here).

However, when I simply change the URL of the line...

var ie = new IE(new Uri("http://www.google.co.uk"));

to the website hosted on my PC through IIS (on Win7), (e.g. to http://localhost/myapp/) the homepage of my application loads fine, but the test-runner seems to still be waiting for confirmation that the page has loaded and then the test fails due to a timeout.

Here's the failed response from within the IDE...

* Failures * Exception WatiN.Core.Exceptions.TimeoutException: Timeout while Internet Explorer state not complete at WatiN.Core.UtilityClasses.TryFuncUntilTimeOut.ThrowTimeOutException(Exception lastException, String message) at WatiN.Core.UtilityClasses.TryFuncUntilTimeOut.HandleTimeOut() at WatiN.Core.UtilityClasses.TryFuncUntilTimeOut.Try1 func) at WatiN.Core.WaitForCompleteBase.WaitUntil(DoFunc1 waitWhile, BuildTimeOutExceptionMessage exceptionMessage">T at WatiN.Core.Native.InternetExplorer.WaitForComplete.WaitWhileIEReadyStateNotComplete(IWebBrowser2 ie) at WatiN.Core.Native.InternetExplorer.IEWaitForComplete.DoWait() at WatiN.Core.DomContainer.WaitForComplete(IWait waitForComplete) at WatiN.Core.IE.WaitForComplete(Int32 waitForCompleteTimeOut) at WatiN.Core.DomContainer.WaitForComplete() at WatiN.Core.Browser.GoTo(Uri url) at WatiN.Core.IE.FinishInitialization(Uri uri) at WatiN.Core.IE.CreateNewIEAndGoToUri(Uri uri, IDialogHandler logonDialogHandler, Boolean createInNewProcess) at WatiN.Core.IE..ctor(Uri uri) at FppRendersUI.Test.Program.DoSomething() in C:\Dev\MyCode.Test\Program.cs:line 18

Anybody else get this, or is it just me?

flag

61% accept rate

2 Answers

vote up 1 vote down

I've had this happen to me when I had a reference to a resource that didn't load.

  • Do have a reference to a JS, CSS, or image file that doesn't exist?
  • If you look at the HTTP traffic with Fiddler do you see any connections timing out?
link|flag
vote up 1 vote down

There should be no significant differences testing a website on locahost.

Two possible causes:

  1. If your webpage contains any significant AJAX then it's possible that the page never appears to be fully loaded so WatiN just keeps waiting.

  2. I have fixed one or two bugs in WatiN now and then related to detecting that a page has been fully loaded. You might try grabbing the WatiN trunk source and building a fresh copy of the latest code.

If none of that helps, WatiN also has "NoWait" variants of several actions like clicking. You can also override what it means to WatiN to wait for a page to be complete by registering a WaitForComplete handler.

link|flag
I agree totally; I can't see why this website should be any different, especially as it's a published (output) site anyway! But am usingn the latest version of WatiN, as I only downloaded it yesterday. – Brett Rigby Nov 8 at 20:33
But no, there's no AJAX going on - it's the homepage of an MVC web application with nothing more exciting than a CSS page dragged in at the top. – Brett Rigby Nov 8 at 21:03
Also, I;ve just checked the file I downloaded - it's WatiN-2.0.10.928-net-2.0.zip from the sourceforge website. Is there a newer codebase available? – Brett Rigby Nov 8 at 21:05
That beta is pretty old. Gallio v3.1 Update 1 ships with a newer version as part of its WatiN samples. You can also build your own from the WatiN trunk. I know Jeroen is working on getting a fresh release out but it's not ready yet. However @orip's comment about having a reference to a missing resource is a good one. – Jeff Brown Nov 8 at 23:25

Your Answer

Get an OpenID
or

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