Hello,
How do I pass a list? I'm using automation framework through the docker images.
Say I use this in a docker-compose or docker command line:
In the yaml file, this works:
contexts :
- name: context 1
urls: ["${url_list}"]
But how do I pass several values? I thought something like this could work:
But it results in an error like this:
Automation plan failures:
Context URLs should be a list: ${url_list}
I could pass a fixed number of URLs with something like this
contexts :
- name: context 1
urls: ["${url_1}", "${url_2}", "${url_3}"]
But I'd rather not if there's a better way.
Thanks!