mirror of
https://github.com/nestjs/docs.nestjs.com.git
synced 2026-02-25 22:15:07 +00:00
12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
import { browser, by, element } from 'protractor';
|
|
|
|
export class DocsPage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText() {
|
|
return element(by.css('app-root h1')).getText();
|
|
}
|
|
}
|