Im searching for a way or method to hide my password for a selenium automation test in visual studio C#.
Currently, i hardcoded the password in my C# code.
Was searching for tutorials on youtube or here in stackoverflow but didnt find anything useful.
Some people are talking about encryptions in the C#/Selenium tutorials, but as i have heard, its not that hard to find out the password when someone knows how to encode. Am i wrong?
The automation test is also being used by my co-workers, so it should be also possible for them to run the automation test while the password is hidden.
Are there any ways, how to hide a password, but use it for a selenium automation test?
(Would appreciate an code example if code is needed)