16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
import { browser, by, element } from 'protractor';
|
|
|
|
export class AppPage {
|
|
navigateTo(destination) {
|
|
return browser.get(destination);
|
|
}
|
|
|
|
getTitle() {
|
|
return browser.getTitle();
|
|
}
|
|
|
|
getPageOneTitleText() {
|
|
return element(by.tagName('app-home')).element(by.deepCss('ion-title')).getText();
|
|
}
|
|
}
|