Reputation: 2447
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
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
Reputation: 67
Are you use Microsoft MT Test?
I believe that can be useful for you.
Upvotes: 1
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