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 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 pre-defined 
data).

I basically want to ensure the server side validation is solid. I figured there 
would be a firefox extension for this but my google fu is weak today.

Thanks for the tips.
Ramon Ecung II, BS, ACHDS, MCP
Sent from my Mobile Device



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332886
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 the result in the cfhttp struct that gets 
returned.



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332854
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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
 pre-defined data).

 I basically want to ensure the server side validation is solid. I figured
 there would be a firefox extension for this but my google fu is weak today.


iMacros for Firefox 6.6.0.1
https://addons.mozilla.org/en-US/firefox/addon/3863

Automate Firefox. Record and replay repetitious work. If you love the
Firefox web browser, but are tired of repetitive tasks like visiting the
same sites every days, filling out forms, and remembering passwords, then
iMacros for Firefox is the solution you’ve been dreaming of! ***Whatever you
do with Firefox, iMacros can automate it.***

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332855
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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] 
Sent: Tuesday, April 13, 2010 8:34 AM
To: cf-talk
Subject: form testing


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
pre-defined data).

I basically want to ensure the server side validation is solid. I figured
there would be a firefox extension for this but my google fu is weak today.

Thanks for the tips.
Ramon Ecung II, BS, ACHDS, MCP
Sent from my Mobile Device



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332856
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm