Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xwiki-platform
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XWiki
xwiki-platform
Commits
26dde0f6
Commit
26dde0f6
authored
9 months ago
by
Simon Urli
Browse files
Options
Downloads
Patches
Plain Diff
XWIKI-22208: Boolean filters are not properly removed in LiveData
* Fix the page object selector
parent
bdd9ae97
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-test/xwiki-platform-livedata-test-pageobjects/src/main/java/org/xwiki/livedata/test/po/TableLayoutElement.java
+2
-2
2 additions, 2 deletions
...n/java/org/xwiki/livedata/test/po/TableLayoutElement.java
with
2 additions
and
2 deletions
xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-test/xwiki-platform-livedata-test-pageobjects/src/main/java/org/xwiki/livedata/test/po/TableLayoutElement.java
+
2
−
2
View file @
26dde0f6
...
@@ -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
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Simon Urli
@surli
mentioned in commit
112171a9
·
9 months ago
mentioned in commit
112171a9
mentioned in commit 112171a912373d9a59cdbcb9b849172e210a30ee
Toggle commit list
Simon Urli
@surli
mentioned in commit
d045463f
·
9 months ago
mentioned in commit
d045463f
mentioned in commit d045463f87eb12a2d3ce14aee2bcba2d50b3f2cc
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment