diff options
Diffstat (limited to 'portal-FE-os/e2e/src/app.po.ts')
-rw-r--r-- | portal-FE-os/e2e/src/app.po.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/portal-FE-os/e2e/src/app.po.ts b/portal-FE-os/e2e/src/app.po.ts new file mode 100644 index 00000000..72e463a3 --- /dev/null +++ b/portal-FE-os/e2e/src/app.po.ts @@ -0,0 +1,11 @@ +import { browser, by, element } from 'protractor'; + +export class AppPage { + navigateTo() { + return browser.get('/'); + } + + getTitleText() { + return element(by.css('app-root h1')).getText(); + } +} |