Codier
Codier

Reputation: 2160

How to do end to end testing for an Ext JS application

I just started using Ext JS to build a relatively complex web application for my company, involving over 200 screens. So we definitely need automated e2e testing.

I am using Jasmine to do unit testing of my controllers and models. However, I want to be able to simulate user navigating through the web app. Is there any good testing framework to do this sort of automated testing?

Thank you

Upvotes: 3

Views: 660

Answers (1)

Jared O'Connor
Jared O'Connor

Reputation: 473

Selenium is the de-facto UI integration testing framework and it has very comprehensive tooling. Watir gets a lot of love in Ruby circles and I've heard a few things about Sahi. I only have personal experience with Selenium, but it seems to stand out much more than the others. See the link below.

https://stackoverflow.com/questions/606550/watir-vs-selenium-vs-sahi

Upvotes: 4

Related Questions