Re: WicketTester - reload page after model changed

2007-10-26 Thread Newgro

Hi David,

thanks for your reply. I tried your way, but didn't overwirte the
WicketTester. I simply added

  final WebRequestCycle cycle = _tester.createRequestCycle();
  p.setModelObject(refreshDay);
  try {
cycle.request(new PageRequestTarget(_tester.getLastRenderedPage()));
  } finally {
cycle.getResponse().close();
  }
  _tester.assertNoErrorMessage();

But now i have the old and the new rendered page in
System.out.println(_tester.getServletResponse().getDocument());

Can i avoid that?

Thanks Per
-- 
View this message in context: 
http://www.nabble.com/WicketTester---reload-page-after-model-changed-tf4691262.html#a13421842
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: WicketTester - reload page after model changed

2007-10-26 Thread Newgro

Hi,

found the solution. With replacing
final WebRequestCycle cycle = _tester.setupRequestAndResponse();
all works as expected.

Thanks for the help
Per
-- 
View this message in context: 
http://www.nabble.com/WicketTester---reload-page-after-model-changed-tf4691262.html#a1348
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]