mirror of
https://github.com/loewexy/pdnsmanager.git
synced 2025-01-28 16:34:10 +01:00
11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
import { browser, by, element } from 'protractor';
|
|
|
|
export class AppPage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText() {
|
|
return element(by.css('app-root h1')).getText();
|
|
}
|
|
}
|