ionic-angular
Version:
[](https://circleci.com/gh/driftyco/ionic)
15 lines (12 loc) • 330 B
JavaScript
name: chooseOne
component: ionRadio
it('should check 3rd radio by clicking its label', function(){
var ele = element.all(by.css('label.item-radio'));
ele.get(2).click();
});
it('should check 4th radio by clicking its label', function(){
var ele = element.all(by.css('label.item-radio'));
ele.get(3).click();
});