So i have Java Maven
project with Selenium
.
This protect is hosted on GitHub
and i also have Jenkis
job that run this test every night.
Because my test require to login to specific WebSite
i need to provide the credential
(email address and password):
emailaddress="myemailaddress@gmail.com"
password="mypassword"
so i create config.properties
file inside my Intellij
and load this credential
from this file.
Now because i hosted my project in free account i want to find a way the not everyone could see this credential
and still be able to run my tests every night.
Any idea how to do that ?