Hi all,
Have anyone been successfully in processing a multipart form using WebTest?
I've encountered error whenever i have enctype="mulipart/form-data" in my
HTML FORM tag. Here is an example. The FORM works only when I remove the
enctype and INPUT tag with type file.
<FORM action="http://server.com/cgi/handle"
enctype="multipart/form-data"
method="post">
<P>
What is your name? <INPUT type="text" name="submit-name"><BR>
What files are you sending? <INPUT type="file" name="files"><BR>
<INPUT type="submit" value="Send"> <INPUT type="reset">
</FORM>