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
I'm hoping there is a better way but I got around this by validating the count of the checked input elements matching that model binding:
expect(element('input[ng-model="value1"]:checked').count()).toBe(1);
At least one downside to this when checking if something is not checked is if the element doesn't exist or if there was a typo the value would still be 0 like in this example:
expect(element('input[ng-model="valueDoesNotExist"]:checked').count()).toBe(0);