Commit 1106261b authored by Arthur Verschaeve's avatar Arthur Verschaeve

Merge pull request #1367 from samccone/sjs/fix-filter-selector

🐛 Fix test routing selector bug
parents 260d2fd3 4535a320
......@@ -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) {
......
......@@ -343,7 +343,6 @@ module.exports.todoMVCTest = function (frameworkName, baseUrl, speedMode, laxMod
});
test.it('should respect the back button', function () {
createStandardItems();
page.toggleItemAtIndex(1);
page.filterByActiveItems();
......
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