Why does the website reject UiPath-entered passwords?

@Matias_Clemente.Arg,

Check if you are typing the Secure password instead of plain text password. If you are getting the password through Credential Asset, convert the retrieved secure password to string password using this below code and pass that string password to your website for login.

New System.Net.NetworkCredential(string.Empty, secureStringPasswordFromAsset).Password
1 Like