Skip to content
Snippets Groups Projects
Commit 26dde0f6 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
parent bdd9ae97
No related branches found
No related tags found
No related merge requests found
...@@ -679,8 +679,8 @@ public WebElement getFilter(String columnLabel) ...@@ -679,8 +679,8 @@ public WebElement getFilter(String columnLabel)
{ {
int columnIndex = findColumnIndex(columnLabel); int columnIndex = findColumnIndex(columnLabel);
By cssSelector = By.cssSelector(String.format( By cssSelector = By.cssSelector(String.format(
".column-filters > th:nth-child(%1$d) input.livedata-filter, " ".column-filters > th:nth-child(%1$d) input, "
+ ".column-filters > th:nth-child(%1$d) select.livedata-filter", columnIndex)); + ".column-filters > th:nth-child(%1$d) select", columnIndex));
return getRoot().findElement(cssSelector); 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