Logo white

ADAM / AIAHTML5

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues
  • Merge Requests 14
  • Labels
  • Wiki
  • Snippets
  • AIAHTML5
  • 400-SOURCECODE
  • Admin
  • e2e
  • app.po.ts
  • Admin UI Added
    cc9a01a1
    Gagandeep authored
    2018-01-10 13:42:55 +0530  
    Browse Code ยป
app.po.ts 208 Bytes
Edit Raw Blame History Permalink
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();
  }
}