Commit 2c90d2d0 authored by Sam Saccone's avatar Sam Saccone

tests: Update misleading method name

parent 007d96ee
...@@ -148,7 +148,7 @@ module.exports = function Page(browser) { ...@@ -148,7 +148,7 @@ module.exports = function Page(browser) {
this.getVisibleLabelText = function () { this.getVisibleLabelText = function () {
var self = this; var self = this;
return this.getVisibleItemLabels() return this.getVisibileLabelIndicies ()
.then(function (indicies) { .then(function (indicies) {
return webdriver.promise.map(indicies, function (elmIndex) { return webdriver.promise.map(indicies, function (elmIndex) {
var ret; var ret;
...@@ -167,7 +167,7 @@ module.exports = function Page(browser) { ...@@ -167,7 +167,7 @@ module.exports = function Page(browser) {
}); });
}; };
this.getVisibleItemLabels = function () { this.getVisibileLabelIndicies = function () {
var self = this; var self = this;
var ret; var ret;
return this.getItemLabels() return this.getItemLabels()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment