mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-26 17:10:11 -04:00

this also introduces a redux pattern into the state management, which should significantly improve the complexity of the prev code.
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>;
|
|
}
|
|
}
|