mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
import { browser, element, by } from 'protractor';
|
|
|
|
export class RouterSamplePage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText() {
|
|
return element(by.css('app-root h1')).getText();
|
|
}
|
|
}
|