mirror of
https://github.com/supanadit/geo-smart-map.git
synced 2025-05-04 20:39:52 +00:00
12 lines
262 B
TypeScript
12 lines
262 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 .content span')).getText() as Promise<string>;
|
|
}
|
|
}
|