[
https://issues.apache.org/jira/browse/WICKET-7030?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17700542#comment-17700542
]
ASF subversion and git services commented on WICKET-7030:
---------------------------------------------------------
Commit fb1f73934240df1bbe0188242938d61a6a590992 in wicket's branch
refs/heads/master from Johannes Renoth
[ https://gitbox.apache.org/repos/asf?p=wicket.git;h=fb1f739342 ]
[WICKET-7030] Add Convenience Methods to BaseWicketTester (#555)
* - Add getAllComponentsFromLastRenderedPageByWicketId and
getFirstComponentFromLastRenderedPageByWicketId to BaseWicketTester
* - Add getAllComponentsFromLastRenderedPageByWicketId and
getFirstComponentFromLastRenderedPageByWicketId to BaseWicketTester
* License
* WICKET-7030
- Javadoc
- Fix edge cases
---------
Co-authored-by: renoth <[email protected]>
> Add Convenience Methods in BaseWicketTester
> -------------------------------------------
>
> Key: WICKET-7030
> URL: https://issues.apache.org/jira/browse/WICKET-7030
> Project: Wicket
> Issue Type: Improvement
> Components: wicket-core
> Reporter: Johannes Renoth
> Priority: Minor
>
> Since BasewicketTester does not have methods to conveniently search for
> components by wicket ID only, ignoring the path from last last rendered page,
> we could add them.
> For example we could add
> {code:java}
> Optional<Component> getFirstComponentByWicketId(String id)
> List<Component> getAllComponentsByWicketId(String id)
> {code}
> to enable the Tester to do the following without the manual use of IVisitor
> {code:java}
> tester.startComponentInPage(myComponent);
> var nestedComponent = tester.getFirstComponentByWicketId("myNestedComponent");
> assertThat(nestedComponent).isPresent(). ...
> // Other Example
> tester.startComponentInPage(myComponentWithListView);
> var result = tester.getAllComponentsByWicketId("repeterNestedItem");
> assertThat(result).hasSize(4)
> .extracting(c -> c.isVisible())
> .containsExactly(true, false, true, true);
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)