
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
04/Nov/06 10:13 PM
|
|
I put BookmarkablePageLink on WebPage like this:
firstPage.add( new BookmarkablePageLink( "link", SecondPage.class, new
PageParameters( "id=1" ) ) );
and then I test it using WicketTester:
wicketTester.startPage( FirstPage.class );
wicketTester.clickLink( "link" );
The problem is that wicketTester doesn't pass PageParameters to SecondPage
(because parameters aren't passed to MockHttpServletRequest).
|
|
Description
|
I put BookmarkablePageLink on WebPage like this:
firstPage.add( new BookmarkablePageLink( "link", SecondPage.class, new
PageParameters( "id=1" ) ) );
and then I test it using WicketTester:
wicketTester.startPage( FirstPage.class );
wicketTester.clickLink( "link" );
The problem is that wicketTester doesn't pass PageParameters to SecondPage
(because parameters aren't passed to MockHttpServletRequest). |
Show » |
|