Skip to content

Instantly share code, notes, and snippets.

@AnnemarieD
AnnemarieD / pageObject.js
Last active November 23, 2017 09:20
getText() issue with relevant logs, test and parts of page object
function getItems() {
// returns 5 elements with the given example test
return browser.getText(selector.items);
}
function getAge() {
// returns 6 elements with the given example test
return browser.getText(selector.age);
}