e2e test updates

This commit is contained in:
Adam Bradley
2015-10-06 12:15:13 -05:00
parent f497608768
commit 0e2ac93382
2 changed files with 8 additions and 5 deletions

View File

@@ -7,14 +7,14 @@ it('should go to Tab1 Page2', function() {
element(by.css('#goToTab1Page2')).click();
});
it('should go back to Tab1 Page1', function() {
element(by.css('#backToTab1Page1')).click();
});
it('should go to Tab2 Page1', function() {
element(by.css('.tab-button:nth-of-type(2)')).click();
});
it('should go back to Tab1 Page2', function() {
it('should go back to Tab1 Page1', function() {
element(by.css('.tab-button:nth-of-type(1)')).click();
});
it('should go back to Tab1 Page1', function() {
element(by.css('#backToTab1Page1')).click();
});

View File

@@ -66,4 +66,7 @@
height: auto;
border-top: 1px solid gray;
}
ion-tabs .navbar-container {
display: none;
}
</style>