mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-02-05 13:25:08 +02:00
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
|
import {browser, by, element} from "protractor";
|
||
|
|
||
|
export class TestProjectPage {
|
||
|
navigateTo() {
|
||
|
return browser.get('/');
|
||
|
}
|
||
|
|
||
|
getParagraphText() {
|
||
|
return element(by.css('app-root h1')).getText();
|
||
|
}
|
||
|
}
|