Blame view

e2e/app.po.ts 217 Bytes
aeb06133   Angular CLI   chore: initial co...
1
2
3
4
5
6
7
8
9
10
11
import { browser, element, by } from 'protractor';

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

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