I'm trying to run UI-tests (written using white). When I run them using NUnitConsole everything works fine. When I try to run them using TeamCity I get the following exception Test(s) failed. White.Core.UIItems.UIActionException : Couldn't find window with title Form1 in process 4132, after waiting for 5000 ms. What might be wrong? What could I do to make the test pass?

link|improve this question

Is the agent running as admin? – Ruben Bartelink May 6 '11 at 19:41
Yes, i tried to run it as admin. Doesn't help. – StuffHappens May 8 '11 at 7:16
Have you tried logging into the server once using the admin account (e.g. with Remote Desktop)? Sometimes you need to allow Windows to first establish the user profile for it to access the desktop. – Daniel Nolan May 11 '11 at 2:51
feedback

3 Answers

up vote 2 down vote accepted

Not only does the build agent need to be set to interact with the desktop, but the desktop must be displayed in order for UI automation to work - desktop cannot be locked and screen saver must not be running. Is your agent on a headless machine? If you are using RDP to connect to the agent to check on things, when you close RDP, it locks the desktop. In this case, the automation will fail. Instead of using RDP, use a VNC viewer to log on to the box, rather than RDP, as VNC will not lock the desktop when you close it.

Another issue to consider is network access. If you are running TC agent as a service with access to desktop, then it will be running under service account which will not have access to network shares, etc... If this is a probelm, then you will not be able to run TC agent as a service, and will instead need to logon with a domain user and kick off the agent.bat file to start the agent.

link|improve this answer
feedback

You probably have to make the Teamcity build agent interact with desktop.

Run -> services.msc -> Select TeamCity Build agent and right click -> Properties -> Log On tab -> Check "Allow service to interact with desktop"

Edit:

If that doesn't work, stop the agent service, go to Build Agent folder ( c:\teamcity\buildagent\bin ? ) and issue agent.bat start and then trigger the tests.

link|improve this answer
did't help, but +1 for the try. – StuffHappens May 6 '11 at 7:06
@StuffHappens can you try stopping the agent service and starting it manually from the agent folder i.e run it from console and then triggering the tests? – manojlds May 8 '11 at 7:48
@StuffHappens Have updated my answer as well. – manojlds May 8 '11 at 7:54
This may sound silly, but does a window with a title "Form1" actually exist at the time the test is running ? – lysergic-acid May 9 '11 at 4:42
@liortal - he said it worked fine with NunitConsole – manojlds May 9 '11 at 4:45
show 1 more comment
feedback

There is recommendation to run the UI tests on virtual machines.

Seems as most reliable solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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