Hi,
After upgrading Webtest to 2.6 version, I am getting error
"TypeError: Cannot read property "length" from undefined". Before upgrade
this issue was not there.
I looked through mailing list archives and found out that the same issue is
reported earlier but no resolution available.
My code is something like
var pwdfld = document.getElementById("password");
if(pwdfld.value == "" || pwdfld.length < 4)
{
alert("Password should have at least 4 characters!");
return false;
}
Any help would be most appreciated.
Thanks
Jaydeep