mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
4e7ffbfbac
It's not testing CLI i18n integration, it's instead testing localize itself over CLI bundles. PR Close #33510
10 lines
278 B
TypeScript
10 lines
278 B
TypeScript
import {browser, by, element} from 'protractor';
|
|
|
|
export class AppPage {
|
|
navigateTo() { return browser.get('/'); }
|
|
|
|
getHeading() { return element(by.css('app-root h1')).getText(); }
|
|
|
|
getParagraph(name: string) { return element(by.css('app-root p#' + name)).getText(); }
|
|
}
|