mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
11 lines
276 B
TypeScript
11 lines
276 B
TypeScript
|
|
it('should check apple via checkbox element click', function() {
|
|
element(by.css('#e2eAppleCheckbox')).click();
|
|
});
|
|
|
|
|
|
it('should enable/check grape via buttons', function() {
|
|
element(by.css('#e2eGrapeDisabled')).click();
|
|
element(by.css('#e2eGrapeChecked')).click();
|
|
});
|