I'm trying to find a way to run a test with different arguments through command line. to be more specific- I want to send different login credentials every time I'm calling-
$ protractor conf.js
maybe something like
$ protractor conf.js username,password
I know that I can use the configuration file, but it is also hardcoded.
thanks!