Change BaseWicketTester.getTagByXXX return value from TagTester to TagTester[]
------------------------------------------------------------------------------
Key: WICKET-1206
URL: https://issues.apache.org/jira/browse/WICKET-1206
Project: Wicket
Issue Type: Improvement
Components: wicket
Affects Versions: 1.3.0-rc1
Reporter: Craig McIlwee
Priority: Minor
Fix For: 1.4.0-alpha
When using the org.apache.wicket.markup.repeater.data.DataView, each row in the
table has the same wicket:id. I am trying to use the TagTester to ensure that
each <tr> tag has the correct attributes, in this case class="odd" and
class="even". Since getTagByWicketId and getTagById only return a single
TagTester, a tester for the same markup tag is returned each time, making it
impossible to test any row other than the first.
Example HTML output:
<table>
<tr class="even" wicket:id="table"> <--------- TagTester returned is
always for this tag
</tr>
<tr class="odd" wicket:id="table">
</tr>
<tr class="even" wicket:id="table">
</tr>
<tr class="odd" wicket:id="table">
</tr>
<tr class="even" wicket:id="table">
</tr>
</table>
Proposed solution: change the return value to TagTester[] so that one call
will return all of the tags with that wicket:id
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.