6f084171dd
The initial new codebase from a template
11 lines
219 B
TypeScript
11 lines
219 B
TypeScript
import { browser, element, by } from 'protractor/globals';
|
|
|
|
export class CoreUIPage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText() {
|
|
return element(by.css('app-root h1')).getText();
|
|
}
|
|
}
|