ionic-framework
Version:
15 lines (11 loc) • 512 B
JavaScript
describe('checkbox/test/basic: ios', function() {
it('should init', function() {
browser.get('http://localhost:8876/dist/e2e/checkbox/test/basic/index.html?ionicplatform=ios&ionicanimate=false&snapshot=true');
});
it('should check apple, enable/check grape, submit form', function () {
element(by.css('[ng-control=appleCtrl] .checkbox-media')).click();
element(by.css('.e2eGrapeDisabled')).click();
element(by.css('.e2eGrapeChecked')).click();
element(by.css('.e2eSubmit')).click();
});
});