UNPKG

ngx-text-editor-angular

Version:
16 lines (12 loc) 315 B
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(); } }