mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00

Added another toolbar with 3 segments for testing and in order to fix the width on iOS, references #356
17 lines
410 B
TypeScript
17 lines
410 B
TypeScript
|
|
it('friends should be selected', function() {
|
|
element(by.css('.e2eSegmentFriends')).click();
|
|
});
|
|
|
|
it('standard should be selected', function() {
|
|
element(by.css('.e2eSegmentStandard')).click();
|
|
});
|
|
|
|
it('model c should be selected', function() {
|
|
element(by.css('.e2eSegmentModelC')).click();
|
|
});
|
|
|
|
it('top grossing should be selected', function() {
|
|
element(by.css('.e2eSegmentTopGrossing')).click();
|
|
});
|