aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/e2e/app.po.ts
blob: 8084cae329d939c6bea2dfa98943ec7d6f37c39d (plain)
1
2
3
4
5
6
7
8
9
10
11
import { browser, element, by } from 'protractor';

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

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