Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2012 - Coded UI Test Wont Run

I'm trying to create a Coded UI Test in Visual Studio 2012. When I add a new test VS will automatically start the recorder. I then do some basic clicks around in the WinForms application I want to test. I end the recording and generate a script. When I try to run that script it complies fine but I get the runtime error

"Message: Unit Test Adapter threw exception: Method not found: 'Void Microsoft.VisualStudio.TestTools.Diagnostics.NonVSSqmClient..ctor(UInt32)'.."

How do I get my scripts to run?

like image 830
Kleinux Avatar asked Apr 26 '26 23:04

Kleinux


1 Answers

The only versions of Visual Studio 2012 that support Coded UI Testing are Premium and Ultimate.

http://www.microsoft.com/visualstudio/eng/products/compare

Those versions should be able to run your scripts.

like image 90
Steve Avatar answered Apr 29 '26 05:04

Steve