Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Linnea Samila / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • code
  • moya-mgmt
  • e2e
  • app.po.ts
  • Tuomas Riihimäki's avatar
    Tunkh! · 3f10c80c
    - Remove moya-mgmt-web
    - add moya-mgmt
    - Update maven plugin versions
    Tuomas Riihimäki committed Feb 10, 2018
    3f10c80c Browse Files
app.po.ts 213 Bytes
BlameHistoryPermalink
Edit
1 2 3 4 5 6 7 8 9 10 11
import { browser, by, element } from 'protractor';

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

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