Blame view

e2e/app.po.ts 213 Bytes
25ec1989   angular-cli   chore: initial co...
1
2
3
4
5
6
7
8
9
10
11
  import { browser, element, by } from 'protractor';
  
  export class MainMapsPage {
    navigateTo() {
      return browser.get('/');
    }
  
    getParagraphText() {
      return element(by.css('app-root h1')).getText();
    }
  }