Is there a way to pass an array of parameters instead of passing each parameter individually?
For example I have the following scenarios:
When i login to a site
then <firstname>, <lastname>, <middleName>, <Desingation>, <Street>, <Apartmentno> are valid
The list can go on above. Instead can I pass all the above variables in an array?
You can pass a comma separated string and then transform it into a list:
if you want the values to come from examples then you could do this instead:
If you want to use a table then you could do this instead:
(you could omit the headers if you want and just use the row values I think)
you can also use examples with this: