[JWebUnit-users] jwebunit with JSF: Dynamic page takes a long time!
Brought to you by:
henryju
From: Alexandre G. <ale...@ya...> - 2010-09-01 00:12:59
|
Hi guys! I started experimenting with jwebunit on my JSF project. My test takes a really long time to run (it gets stuck for some time at the "beginAt" call). The method succeeds, but it is taking a long time to execute. Does anybody know what is happening ? (this is a JSF 1.2 application). publicclassTesteWebUnit { privateWebTester tester; @Before } publicvoidsetUp() throwsException { tester= newWebTester(); tester.setBaseUrl(http://localhost:8180/Test); @Test publicvoidlogin() { tester.beginAt("/login/login.html"); } } Thanks! tester.assertTitleEquals("Login Page"); |