RE: form testing

2010-04-14 Thread Jason Durham
Download the Firefox Web Developer toolbar and disable Javascript. Or... simply comment out the client-side Javascript. -Original Message- From: succ...@ramonecung.com [mailto:succ...@ramonecung.com] Sent: Tuesday, April 13, 2010 8:34 AM To: cf-talk Subject: form testing Heya! I'm

re: form testing

2010-04-13 Thread Jason Fisher
cfhttp method=POST url=yerForm.cfm cfhttpparam type=FORMFIELD name=field1 value=val1 / cfhttpparam type=FORMFIELD name=field2 value=val2 / cfhttpparam type=FORMFIELD name=field3 value=val3 / cfhttpparam type=FORMFIELD name=field4 value=val4 / /cfhttp Then you also have access to

Re: form testing

2010-04-13 Thread Casey Dougall
On Tue, Apr 13, 2010 at 9:34 AM, succ...@ramonecung.com wrote: Heya! I'm testing an in house developed app and I'm wondering what the best wat to post data to a form is that gets around client side validation (including the maxlength property of a text field and select boxes having

RE: form testing

2010-04-13 Thread Andy Matthews
Disable JavaScript would be an easy one. You could also create your own form on a stand alone page, and just point the action attribute of your new form to the action attribute of the form to be tested. -Original Message- From: succ...@ramonecung.com [mailto:succ...@ramonecung.com]