Question

I recently began to use the NexusLight, a functional test automation framework. Are there more frameworks that does a similar job?

Related question: End-to-End application testing from a users standpoint

Was it helpful?

Solution

Have a look at this question as well.

OTHER TIPS

I haven't really looked into NexusLight but I think InCisif.net is supposed to provide a functional test framework as well. You could look into it.

I test asp.net web apps for years and the only tool I use is Watir.

Found this one too:

http://www.automatedqa.com/products/testcomplete/index.asp

Unfortunately it's not free.

Reading a list made by Scott Hanselman, I found these two tools:

From WatiN page:

[...]WatiN (pronounced as What-in) website. Inspired by Watir development of WatiN started in December 2005 to make a similar kind of Web Application Testing possible for the .Net languages.

And from WatiN Test Recorder:

The purpose of the application is to generate code compatible with the WatiN (Web Application Testing In .NET) project.

Have a look at Seleno. It uses Selenium under the bonnet but abstracts all browser automation into Page Objects, which lead to well structured and fluid C# based tests.

It is particularly well suited to ASP.NET MVC, as each Page Object can be strongly typed (using Generics) to an equivalent MVC ViewModel, leading to a consistent relationship between View, ViewModel and Page Object.

Check out some of the samples in the Seleno codebase to see this in action.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top