mirror of
https://github.com/amark/gun.git
synced 2025-03-30 15:08:33 +00:00
12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
import { browser, element, by } from 'protractor';
|
|
|
|
export class AngularPage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText() {
|
|
return element(by.css('app-root h1')).getText();
|
|
}
|
|
}
|