Hi Marc,

We got this issue resolved. It turned out that WebTest is too good :-)

We had a Capital/small letter issue in javascript code:

if(inputs[i].type == "Checkbox" && inputs[i].checked && 
inputs[i].name.indexOf("event") == 0) {

instead of this we had:

if(inputs[i].type == "checkbox" && inputs[i].checked && 
inputs[i].name.indexOf("event") == 0) {

This doesn't come out with browsers but it didn't work with WebTest.

Thanks for good tool!

Mart

Marc Guillemot wrote:
Hi Mart,

it is easy to figure out if the problem is due to too short waiting time
or to incorrect js execution: just add a <sleep .../> with an exagerated
big delay and check if you get the expected behavior.
If not, additional information would be needed to understand the root of
the problem.

Cheers,
Marc,

_______________________________________________
WebTest mailing list
[email protected]
http://lists.canoo.com/mailman/listinfo/webtest

Reply via email to