ionic-framework
Version:
17 lines (13 loc) • 561 B
JavaScript
describe('segment/test/basic: ios', function() {
it('should init', function() {
browser.get('http://localhost:8876/dist/e2e/segment/test/basic/index.html?ionicplatform=ios&ionicanimate=false&snapshot=true');
});
it('friends and standard should be selected', function () {
element(by.css('.e2eSegmentFriends')).click();
element(by.css('.e2eSegmentStandard')).click();
});
it('model c and top grossing should be selected', function () {
element(by.css('.e2eSegmentModelC')).click();
element(by.css('.e2eSegmentTopGrossing')).click();
});
});