summaryrefslogtreecommitdiffstats
path: root/portal-FE-os/e2e/src/app.po.ts
diff options
context:
space:
mode:
authorSunder Tattavarada <statta@research.att.com>2020-01-14 15:22:53 +0000
committerGerrit Code Review <gerrit@onap.org>2020-01-14 15:22:53 +0000
commit147d575c4899aa1abf32fbb7fd8d89ad181167a2 (patch)
tree3cab3c064193dcc2cc04f87d6de9c958cd4f15fd /portal-FE-os/e2e/src/app.po.ts
parentc3a161c5fdb3a90c7e7e53e23156c82575f61cd8 (diff)
parent1515595ee5302e3380a65a7c7cace0905e2a38f1 (diff)
Merge "Added portal-FE-os project"
Diffstat (limited to 'portal-FE-os/e2e/src/app.po.ts')
-rw-r--r--portal-FE-os/e2e/src/app.po.ts11
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();
+ }
+}