Update of /cvsroot/jwebunit/jWebUnit/testcases/FormSubmissionTest
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14169/testcases/FormSubmissionTest

Added Files:
        MultiFormPage.html QueryFormTricky.html 
        MultiNamedButtonForm.html CheckboxForm.html 
        SingleNamedButtomForm.jsp SingleNamedButtomForm.html 
        QueryFormSimple.html SingleUnnamedButtomForm.html 
Log Message:
migrating test cases to using jetty.  slow and painful.

--- NEW FILE: SingleNamedButtomForm.html ---
<html>
<head></head>
<body>
        <form method=GET action="TargetPage?color=blue">
                <input type=submit>
        </form>
</body>
</html>
--- NEW FILE: SingleNamedButtomForm.jsp ---
<html>
<head></head>
<body>
        <form method=GET action="TargetPage?color=blue">
                <input type=submit>
        </form>
        <% request.getParameter("color") %>
        
</body>
</html>
--- NEW FILE: CheckboxForm.html ---
<html>
<head></head>
<body>
        <form method=GET action="TargetPage">
                <input type="checkbox" name="checkBox" value="1">
                <input type="checkbox" name="checkBox" value="2">
                <input type="checkbox" name="checkBox" value="3">
                <input type="submit" name="button">
        </form>
</body>
</html>
--- NEW FILE: MultiNamedButtonForm.html ---
<html>
<head></head>
<body>
        <form method=GET action="TargetPage">
                <input name="button1" value="b1" type=submit>
                <input name="color" value="red" type=submit>
                <input name="color" value="blue" type=submit>
        </form>
</body>
</html>
--- NEW FILE: QueryFormTricky.html ---
<html>
<head></head>
Trick!
<form method=GET action="TargetPage">
        First : <input type="text" name="param1">
        Second : <input type="text" name="param2">
Trick!
</form>

<form name="form2" method=GET action="TargetPage">
        Trick! <input type="text" name="param3">
        Treat! <input type="text" name="param4">
</form>
</html>

--- NEW FILE: QueryFormSimple.html ---
<html>
<head></head>
        <body>
                <form method=GET action="TargetPage">
                First : <input type="text" name="param1">
                Second : <textarea name="param2"></form>
        </body>
</html>

--- NEW FILE: MultiFormPage.html ---
<html>
<head></head>
        <body>

                <form method=GET action="TargetPage">
                        <input type="text" name="param1">
                        <input type="submit" name="button1">
                </form>

                <form name="form2" method=GET action="TargetPage">
                        <input type="text" name="param2">
                        <input type="submit" name="button2a" value="b2a">
                        <input type="submit" name="button2b" value="b2b">
                </form>

                <form name="form3" method=GET action="TargetPage">
                        <input type="text" name="param3">
                        <input type="submit">
                </form>

                <form name="form4" method=GET action="TargetPage">
                        <input type="text" name="param4">
                        <input type="submit">
                </form>
                
                <form id="form5"/><form id="form6">
                        <select name="select1">
                        <option value="1">one</option>
                        <option value="2">two</option>
                        <option value="3">three</option>
                        </select>
                </form>
        </body>
</html>

--- NEW FILE: SingleUnnamedButtomForm.html ---
<html>
<head></head>
        <body>
                <form method=GET action="TargetPage">
                        <input type="text" name="color">
                        <input type="submit" name="button">
                        <input type="checkbox" name="checkBox" value="on">
                </form>
        </body>
</html>


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Jwebunit-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jwebunit-development

Reply via email to