mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08: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>;
|
|
}
|
|
}
|