1
0
mirror of https://github.com/NicolasConstant/sengi synced 2024-12-15 10:27:42 +01:00
Sengi-Windows-MacOS-Linux/e2e/app.po.ts
2018-07-31 20:46:44 -04:00

12 lines
208 B
TypeScript

import { browser, by, element } from 'protractor';
export class AppPage {
navigateTo() {
return browser.get('/');
}
getParagraphText() {
return element(by.css('app-root h1')).getText();
}
}