| 1 | import { browser, by, element } from 'protractor'; |
| 2 | |
| 3 | export class AppPage { |
| 4 | navigateTo() { |
| 5 | return browser.get('/'); |
| 6 | } |
| 7 | |
| 8 | getParagraphText() { |
| 9 | return element(by.deepCss('app-root ion-content')).getText(); |
| 10 | } |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected