I was wondering if anyone has ever successfully used multiline values in a cucumber data table. I have not been able to come up with a working solution. I am working with smth like this:
Given i have a web service
When i make a request to "link" using filtering on:
|test1|"<"testvalue1">"|
|test2|"<"testvalue2">"|
|test3|"<"testvalue3">"|
Then i receive "<"response">"
And i receive a list of items "<"list">"
Examples:
|testvalue1 |testvalue2 |testvalue3 |list | response|
|value1 |value2 |value3 |a really long long long long long long long long long long list of items here| 200 |
What i would want to do is somehow split the list value on multiple lines, to improve readability.
Any working suggestions would be appreciated, thanks!