I am still working in eval of Ranorex:
I can only seem to pass one parameter to my test case, how can I pass multiple parameters?
abc.exe /tcpa:testcase:parameter=value:parameter2=value2 or abc.exe /tcpa:test case:parameter=value,:parameter2=value2 is not working, I can only see the first parameter set.
How can I pass a string array of parameters to a test case? For example of I want several values picked in a list and those have to be passed by command line to the test case, of course this needs to be passed to the module.
Thanks.
Parameters command line
Re: Parameters command line
You need to do a switch action for each parameter.
You cannot pass an array into the command line without changing the code in your Program.cs Main() function.
Code: Select all
abc.exe /tcpa:testcase:parameter=value /tcpa:testcase/parameter2=value2
You cannot pass an array into the command line without changing the code in your Program.cs Main() function.
Shortcuts usually aren't...