Issue Facing while typing the password

Hi Team,

I am typing a password in a web form using type secure text activity. But we are facing a different behavior in production server as it automatically hit the caps lock button(caps lock is on). So it types incorrect password.
I tried using type into as well with simulate box checked.
Can you please suggest how to resolve this issue. Or what might be the cause of the issue.
Thanks in advance.

@NitikaTyagi : Try to pass your password.tostring.tolower and check.

The password is case sensitive having upper case characters , lower case characters and special characters.

@NitikaTyagi

convert Secure string to String then use Use Set Text Activity

Secure string to string convert

StrPassword is your Secure string Variable
new System.Net.NetworkCredential(string.Empty, StrPassword).Password

1 Like