mirror of
https://github.com/simon987/task_tracker.git
synced 2025-04-10 05:56:42 +00:00
12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
import {browser, by, element} from 'protractor';
|
|
|
|
export class AppPage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getTitleText() {
|
|
return element(by.css('app-root h1')).getText();
|
|
}
|
|
}
|