mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-15 17:23:17 -05:00
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
import { browser, by, element } from 'protractor';
|
|
|
|
export class AppPage {
|
|
navigateTo() {
|
|
return browser.get(browser.baseUrl) as Promise<any>;
|
|
}
|
|
|
|
getTitleText() {
|
|
return element(by.css('app-root .content span')).getText() as Promise<string>;
|
|
}
|
|
}
|