Initial commit

This commit is contained in:
Olu Amey
2020-11-07 08:37:32 -05:00
commit abc0e763ff
39 changed files with 15483 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { browser, by, element } from 'protractor';
export class AppPage {
navigateTo() {
return browser.get('/');
}
getParagraphText() {
return element(by.deepCss('app-root ion-content')).getText();
}
}