aboutsummaryrefslogtreecommitdiff
path: root/e2e/app.po.ts
blob: 82ea75ba504ab2726e4bd08d89e69e99b7a711ba (plain) (blame)
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.css('app-root h1')).getText();
  }
}