Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 1334662

Browse files
bcaudanjuliemr
authored andcommitted
fix(locators): Improve custom locators message
Increase readability of custom locator message by displaying each argument instead of the arguments object.
1 parent c9dbbaa commit 1334662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/locators.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ ProtractorBy.prototype.addLocator = function(name, script) {
6565
return driver.findElements(
6666
webdriver.By.js.apply(webdriver.By, findElementArguments));
6767
},
68-
message: 'by.' + name + '("' + locatorArguments + '")'
68+
message: 'by.' + name + '("' + Array.prototype.join.call(locatorArguments, '", "') + '")'
6969
};
7070
};
7171
};

0 commit comments

Comments
 (0)