-
-
Save lydemann/44f66b5fbd8da5936c23dbadfeb9e4a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { browser, by, element } from 'protractor'; | |
export class AppPage { | |
navigateTo() { | |
return browser.get('/'); | |
} | |
getAmountOfTODOs() { | |
return element(by.css('.todo-item')).count; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment