mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-22 02:10:12 +01:00
12 lines
216 B
TypeScript
12 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();
|
||
|
|
}
|
||
|
|
}
|