Skip to content
Snippets Groups Projects
Commit d045463f authored by Simon Urli's avatar Simon Urli
Browse files

XWIKI-22208: Boolean filters are not properly removed in LiveData

  * Fix the page object selector

(cherry picked from commit 26dde0f6)
parent 5fcb0aa4
No related branches found
No related tags found
No related merge requests found
......@@ -679,8 +679,8 @@ public WebElement getFilter(String columnLabel)
{
int columnIndex = findColumnIndex(columnLabel);
By cssSelector = By.cssSelector(String.format(
".column-filters > th:nth-child(%1$d) input.livedata-filter, "
+ ".column-filters > th:nth-child(%1$d) select.livedata-filter", columnIndex));
".column-filters > th:nth-child(%1$d) input, "
+ ".column-filters > th:nth-child(%1$d) select", columnIndex));
return getRoot().findElement(cssSelector);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment