Commit 38e811de authored by Sam Saccone's avatar Sam Saccone

🐛 Fix test routing selector bug

parent 260d2fd3
......@@ -44,7 +44,7 @@ module.exports = function Page(browser) {
};
this.getFilterElementsXpath = function () {
return !idSelectors ? '//ul[@id="filters"]//a' : '//ul[contains(@class, "filters")]';
return !idSelectors ? '//ul[@id="filters"]//a' : '//ul[contains(@class, "filters")]//a';
};
this.xPathForItemAtIndex = function (index) {
......
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