Nobody writing e2e tests for AngularJS projects? Or nobody using protractor? Any good testing frameworks that support input elements like checkboxes for AngularJS e2e tests?
--
You received this message because you are subscribed to the Google Groups "AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to angular+u...@googlegroups.com.
To post to this group, send email to ang...@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.
Hi Anton,
RegistrationPage = ->
@email = element(`by`.model('user.email'))
@tosAgreement = element(`by`.model('user.tosAgreement'))
@email.sendKeys('whatever')
... working great, everything else too (clear, ...)
@tosAgreement.isSelected()
Forget the question. I just figured out (after hours of googling) that I have to write half a page of code for simple stuff like $('elem.class:visible).count().should_be gt(0) - AngularJS integration is nice, but if I have to spend hours of time to figure out how to filter/reduce results and spent most of my time writing tests code and helpers so that the test code stays DRY... nothing for me, I rather use something efficient.
--