Files
smarthome/mean-app/e2e/app.po.ts
T
2017-03-22 15:07:44 +01:00

12 lines
212 B
TypeScript

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