mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
12 lines
202 B
TypeScript
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();
|
||
|
|
}
|
||
|
|
}
|