diff options
author | schencej <schencej@clarkson.edu> | 2019-09-14 13:15:56 -0400 |
---|---|---|
committer | schencej <schencej@clarkson.edu> | 2019-09-14 13:15:56 -0400 |
commit | 30ea1d1313e5830456b49cd100906eb0c4f3efd0 (patch) | |
tree | ed064cb2aea7f23ff9e2dbad47f5161fe6fe41fc /recipeBuddy/e2e/src/app.po.ts |
Initial commit
Diffstat (limited to 'recipeBuddy/e2e/src/app.po.ts')
-rw-r--r-- | recipeBuddy/e2e/src/app.po.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/recipeBuddy/e2e/src/app.po.ts b/recipeBuddy/e2e/src/app.po.ts new file mode 100644 index 0000000..b8498c2 --- /dev/null +++ b/recipeBuddy/e2e/src/app.po.ts @@ -0,0 +1,11 @@ +import { browser, by, element } from 'protractor'; + +export class AppPage { + navigateTo() { + return browser.get(browser.baseUrl) as Promise<any>; + } + + getTitleText() { + return element(by.css('app-root .content span')).getText() as Promise<string>; + } +} |