When you have saved username and password for some site Chrome will autofill that username and password, but if you try to get the value for the password input field it is e
If you want make input to be seen as fulfilled, try to trigger blur on it: $('input[type="password"]').blur();
blur
$('input[type="password"]').blur();