delphimvcframework/samples/angular2/webapp/e2e/app.po.ts
2016-12-01 15:23:23 +01:00

12 lines
213 B
TypeScript

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