Kimtho6
Kimtho6

Reputation: 6184

Alternatives to Coded UI test for Visual Studio

Im looking for some alternatives for Coded UI test. Unfortunately I'm only running Visual Studio 2013 professional

I have already looked at Selenium for Firefox, but that does not seem to work in my version of Firefox

Upvotes: 6

Views: 3044

Answers (2)

Naeem A. Malik
Naeem A. Malik

Reputation: 1025

If you want to test web applications, you can use any of the following:

  1. Selenium
  2. Cypress.io
  3. Nightwatch.js(uses Selenium BTS)

For Windows desktop applications, Microsoft is now supporting Appium based WinAppDriver. For more details, you may check the GitHub repository here. I also teach a Udemy course on the subject which can be seen hereenter link description here. White is another desktop application testing API but I haven't used it a lot.

Upvotes: 2

henginy
henginy

Reputation: 2061

We previously used WebAii to test a complex ASP.NET application and it was successful. I have found out that it is now part of Telerik controls. (I have no affiliation with the company.)

http://www.telerik.com/videos/details/teststudio/webaii-testing-framework-and-nunit

Other than that, keeping the UI as light/dummy as possible and testing beneath it extensively usually worked out better for me.

Upvotes: 1

Related Questions