[Http-webtest-general] form post - line too long?
Brought to you by:
m_ilya,
richardanderson
From: Terry <td...@gm...> - 2004-12-08 21:43:56
|
Here is my test: show_html = yes plugins = ( ::Click ) test_name = login url = https://$URL/Logon_1.asp?NEXTPAGE=LOGIN method = post click_button = cmdSubmit params = ( txtUserName => 'username' txtPassword => 'password' ) end_test I am getting this: Test Name: login URL: https://$URL/Logon_1.asp?NEXTPAGE=LOGIN STATUS CODE CHECK Expected '200' and got: 500 Line too long (limit is 4096) FAIL PAGE CONTENT: Here is the HTML form: <form action="Logon_1.asp?NEXTPAGE=LOGIN" method="POST" id="form1" name="form1"> <font face="Verdana, Arial, Helvetica" size="2"> Please enter your <b>User Name</b> and <b>Password</b> to log on to the system.<br>Passwords are case sensitive. </font> </td> </tr> </table> <em></em> <br> <table border="0" cellpadding="0" cellspacing="0" width="90%" align="center"> <tr> <td align="RIGHT" width="50%"><b><font face="Verdana, Arial, Helvetica" size="2">User Name: </font></b></td> <td align="LEFT" width="50%"><input type="TEXT" size="22" name="txtUserName" value> </td> </tr> <tr> <td align="RIGHT" valign="TOP" width="50%"><b><font face="Verdana, Arial, Helvetica" size="2">Password: </font></b></td> <td align="LEFT" width="50%"><input type="PASSWORD" size="22" name="txtPassword"> </td> </tr> <tr> <td></td> </tr> </table> <br> <table border="0" cellpadding="0" cellspacing="0" width="90%" align="center"> <tr> <td align="center" colspan="2"><input type="SUBMIT" name="cmdSubmit" value="Login"></td> </tr> </table> </form> I have completed other basic tests and able to hit this site fine. I have done forms like this before but have never seen this. Thanks for any ideas! Terry |