mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
|
import { browser, by, element } from 'protractor';
|
||
|
|
||
|
export class AppPage {
|
||
|
navigateTo() {
|
||
|
return browser.get(browser.baseUrl) as Promise<any>;
|
||
|
}
|
||
|
|
||
|
getTitleText() {
|
||
|
return element(by.css('app-root h1')).getText() as Promise<string>;
|
||
|
}
|
||
|
}
|