freifunksearch

Moved to https://github.com/FreifunkSearchProjekt
git clone git://archive.git.mtrnord.blog/MTRNord/freifunksearch.git
Log | Files | Refs | README | LICENSE

app.po.ts (208B)


      1 import { browser, by, element } from 'protractor';
      2 
      3 export class AppPage {
      4   navigateTo() {
      5     return browser.get('/');
      6   }
      7 
      8   getParagraphText() {
      9     return element(by.css('app-root h1')).getText();
     10   }
     11 }