i have a
servlet with a blank action (so it calls itself). first time in it creates a form with a submit button a la:
so the servlet has basically this logic:
this works fine when i
test it on my servlet engine.
the problem is trying to test it with httpUnit. when i submit the form via the httpUnit WebConversation getResponse method, the code above always hits the else block.
is there a better way to check for form submission than my req.getParameter("goButton") call? preferably one that httpUnit likes...