up vote 2 down vote favorite
share [g+] share [fb]

I am working on a new test project with watiN, but always get this error,

Could not load file or assembly 'WatiN.Core, Version=2.0.3.913, Culture=neutral, PublicKeyToken=db7cfd3acb5ad44e' or one of its dependencies. An attempt was made to load a program with an incorrect format.

Did I miss something? thanks.

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

The assembly appears to be strongly named so you can install it in the GAC (open C:\windows\assembly and drag the dll into there). You may need to download it from the internet if you can't find it on your computer.

Failing that, are you on a 64 bit computer? It may be that watin requires you to execute your program as a 32 bit application (In Visual Studio, this is under the "Build Configuration" section).

link|improve this answer
You are right. I changed the platform target to x86 and it's working. thanks. – Fred May 27 '09 at 16:52
Just saved me hours! Thanks!!! – Zaffiro Oct 25 '09 at 13:04
feedback

If you needs to run WatiN in 64 bit , you can get the source and change the target platform to x64 in the project properties.Rebuild the project and reference the new 64 bit WatiN.Core.It should work.

link|improve this answer
feedback

Do you need to add a reference in your project to the WatiN assembly? Or possibly copy the WatiN assembly to your /bin folder?

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.