mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-27 17:39:49 -04: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>;
|
||
|
}
|
||
|
}
|