summaryrefslogtreecommitdiffstats
path: root/portal-FE-os/e2e/src/app.po.ts
blob: 72e463a33539a15bd3e028aaa22c697fc647b9a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { browser, by, element } from 'protractor';

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

  getTitleText() {
    return element(by.css('app-root h1')).getText();
  }
}