jcollum
jcollum

Reputation: 46569

which automated web testing framework is kept most up-to-date?

Related: Automated Web UI Testing

I'm evaluating ui testing frameworks. It seems like some of them aren't updated very often (esp. Selenium, the core hasn't been updated since 6/2009).

My concern here is that I'll adopt/learn a testing framework that isn't going to be compatible with HTML5. I'm working in C# land, so I'd prefer a framework that will output tests in C# (Nunit).

Which UI testing framework is most likely to be kept up-to-date as HTML5 features become more commonplace?

Candidates:

Upvotes: 0

Views: 577

Answers (2)

TN.
TN.

Reputation: 611

You may want to look at RIATest for cross-platform cross-browser testing of HTML5 applications.

Historically major updates of RIATest were released every 12-18 months, with minor updates coming out every few months.

(Disclaimer: I am a RIATest team member).

Upvotes: 0

David Storey
David Storey

Reputation: 30394

I'd recommend using WebDriver/Selenium. This has wide adoption at many major companies (including Google for example) so isn't likely to go away any time soon. It also has wide support from browser vendors.

Otherwise Watir is also popular.

Upvotes: 1

Related Questions