vote up 0 vote down star

I've gotten a simple WatiN web test running on my dev environment and am trying to get it working on the TFS build server. WatiN is firing an exception:

System.Threading.ThreadStateException: The CurrentThread needs to have it's 
ApartmentState set to ApartmentState.STA to be able to automate Internet Explorer.

The test runner, VSTestHost supposedly uses STA threading by default. I've also tried explicitly forcing it to STA via the .testrunconfig file. Still WatiN is unhappy. I'm using Visual Studio/TFS 2008 on Windows Server 2008.

Has anyone else hit this problem and found a solution?

flag

57% accept rate

1 Answer

vote up 0 vote down

Editing the testrunconfig as you suggest should be the solution. What syntax did you try? as far as I can recall for 2008 it's

 <ExecutionThread apartmentState="1" />

and for 2005 it's

<apartmentState type="System.Threading.ApartmentState">
  <value__ type="System.Int32">1</value__>
</apartmentState>
link|flag
I used, <ExecutionThread apartmentState="STA" /> which should be valid, but redundant. See social.msdn.microsoft.com/Forums/en-US/… – Craig Fisher May 29 at 22:18
The ="1" syntax is not valid according to this blog post: blogs.msdn.com/irenak/archive/… – Craig Fisher May 29 at 22:19

Your Answer

Get an OpenID
or

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