mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
17 lines
344 B
TypeScript
17 lines
344 B
TypeScript
|
|
it('should go from 1 to 2', function() {
|
|
element(by.css('#from1To2')).click();
|
|
});
|
|
|
|
it('should go from 2 to 3', function() {
|
|
element(by.css('#from2To3')).click();
|
|
});
|
|
|
|
it('should go from 3 to 2', function() {
|
|
element(by.css('#from3To2')).click();
|
|
});
|
|
|
|
it('should go from 2 to 1', function() {
|
|
element(by.css('#from2To1')).click();
|
|
});
|