Files
Go-To-bed/e2e/src/app.po.ts
2021-11-04 00:04:25 +00:00

12 lines
202 B
TypeScript

import { browser, by, element } from 'protractor';
export class AppPage {
navigateTo() {
return browser.get('/');
}
getPageTitle() {
return element(by.css('ion-title')).getText();
}
}