Re: WicketTester Access Component Specific resource bundles

2016-09-09 Thread David Beer
Hi In the end I used the following to get the Resource value. tester().getApplication().getResourceSettings().getStringResourceLoaders().get(5).loadStringResource(HeaderPanel.class, "resource-keyl",Locale.getDefault(), tester().getSession().getStyle(), "") Is there an easier way to get the

Re: WicketTester Access Component Specific resource bundles

2016-09-09 Thread David Beer
Hi Martin I use a custom Wicket Application added to WicketTester via new WicketTester(new WicketApplication()). I use a similar process to the way wicket-bootstrap-core creates the Tester class and Wicket Application. Thanks David On 5 September 2016 at 21:02, Martin Grigorov