mirror of
https://github.com/Instadapp/InstaDApp-Dashboard.git
synced 2024-07-29 22:48:18 +00: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>;
|
|
}
|
|
}
|