6

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

Kimtho6
  • 6,154
  • 9
  • 40
  • 56
  • Does this answer your question? [C# Selenium or WebBrowser alternative mimic human](https://stackoverflow.com/questions/15063448/c-sharp-selenium-or-webbrowser-alternative-mimic-human) – Michael Freidgeim Apr 30 '22 at 07:11

2 Answers2

2

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.

Naeem A. Malik
  • 995
  • 4
  • 19
1

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.

henginy
  • 2,041
  • 1
  • 16
  • 27