I\'ve been trying out the AngularJS e2e tests and am getting stuck determining whether or not a checkbox is checked.
I used the end to end test for the checkbox inp
For anyone using Protractor, there is webdriver isSelected() for exactly this.
Instead of asking for checked attribute you can do:
checked
expect(element(by.model('value1')).isSelected()).toBeTruthy();