Socialify

Folder ..

Viewing app.po.ts
11 lines (9 loc) • 221.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
import { browser, by, element } from 'protractor';

export class AppPage {
  navigateTo() {
    return browser.get('/');
  }

  getParagraphText() {
    return element(by.deepCss('app-root ion-content')).getText();
  }
}