mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 07:11:08 +00:00
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
import { browser, by, element } from 'protractor';
|
|
|
|
export class AppPage {
|
|
navigateTo(): Promise<unknown> {
|
|
return browser.get(browser.baseUrl) as Promise<unknown>;
|
|
}
|
|
|
|
getTitleText(): Promise<string> {
|
|
return element(by.css('app-root .content span')).getText() as Promise<string>;
|
|
}
|
|
}
|