Mehdi Haghshenas
Mehdi Haghshenas

Reputation: 2447

Angular JS - Best Way to UI Testing Angular js projects

I have written a site with angular js and I now want to create UI tests for this site (Automated UI Test) but I don't know the best way to do this. Is using a Visual Studio Coded UI Test Project a good way of writing these tests?

Upvotes: 3

Views: 3020

Answers (3)

arman radan
arman radan

Reputation: 190

Karma is a nice tool to run UI tests with .
It Supports angularJs and javascript and also has nice customization capacities . you can find out more about karma here

Upvotes: 2

user4132661
user4132661

Reputation: 67

Are you use Microsoft MT Test?
I believe that can be useful for you.

Upvotes: 1

Walter Brand
Walter Brand

Reputation: 689

It seems like you are looking for a way to test the application as a whole, the so-called end-2-end tests. If so, then I would recommend using protractor. Protractor is able to understand the Angular application that it tests so the results are highly trustworthy compared to other test suites.

check out: https://github.com/angular/protractor

Upvotes: 2

Related Questions