In previous versions of watir I used to send 11 characters to a field
that had a maxlimit of 10.  This would ensure the server also checked
the parameter and did something sensible (truncate or error message).

The newer version seems a bit "safer" and ie.text_field (:index,1).set
("01234567890") just truncates the input to the maxlength.  Ok I
accept that and found I could use ie.text_field (:index,
1).value="01234567890" in the instances where I wanted to do the
server side validation.

NOW THE PROBLEM

How do I do that for a combo box?

I want to send a value that is not in the list of options.  One way
might be to add the item and then send it (sorta the same thing I
guess).  In any case the server should again check and handle this.

And I bet the next question I ask will be around Radios and
Checkboxes?  Setting/sending invalid values.

BACKGROUND

For those unfamiliar with OWASP threats (google that) and see that
this is amongst the most common vulnerabilities in security.  You
cannot assume the web browser will safeguard inputs.  In fact till now
we have manually used Firefox and Tamperdata to do this.  But the task
is very difficult and time consuming - So I want to automate these
tests too.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~----------~----~----~----~------~----~------~--~---

Reply via email to