mirror of
https://github.com/taigrr/wails.git
synced 2026-04-12 18:11:31 -07: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>;
|
|
}
|
|
}
|