mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-24 09:04:59 +03: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>;
|
||
|
}
|
||
|
}
|