vote up 1 vote down star

My HTMLUnit tests are failing, and I've got a feeling it's because I'm entering a password using the setValueAttribute() method and that for some reason doesn't work. Any ideas? Am I supposed to pass HTMLUnit the encrypted form of the password?

EDIT:

The code to set the pass:

loginForm.getInputByName("loginPassword").setValueAttribute("1234");

flag

25% accept rate
Post some example code, please. – skaffman Jun 3 at 13:00
This is my code: loginForm.getInputByName("frm_login_password").setValueAttribute("foo"); Looks the same. Are you sure that this is the problem? – ReneS Jun 3 at 15:54

3 Answers

vote up 1 vote down

Hi,

This should work, can you please submit a test case to HtmlUnit user-list, so we investigate further?

Yours, Ahmed Ashour http://asashour.blogspot.com/

link|flag
1  
Please post the url to the defect here, so we can link it together. – ReneS Jun 5 at 6:43
vote up 0 vote down

The password field is not encrypted. It is just not rendered as plain text in the browser (dots or stars instead). You can make it visible with a tool, such as Webdeveloper toolbar for Firefox. So this should not be the problem. I am using HtmlUnit myself and it works.

link|flag
I've put some code up. Does that look normal? – Mike Jun 3 at 14:00
vote up 0 vote down

It does work, I have it working.

I would check to make sure you getting the correct input field name. If not, can you post the stacktrace.

The below code works for me. form.getInputByName("password").setValueAttribute("1234");

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.