mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
import { browser, element, by } from 'protractor';
|
|
|
|
export class Ng2AdminCLIPage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText() {
|
|
return element(by.css('app-root h1')).getText();
|
|
}
|
|
}
|