mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
import { browser, element, by } from 'protractor';
|
|
|
|
export class MyappPage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText() {
|
|
return element(by.css('app-root h1')).getText();
|
|
}
|
|
}
|