I am using Geb/Groovy/Spock framework and working on parameterizing my tests with the data tables.
eg.
where:
name | address | occupation
'John' | 'London' | 'Manager'
'Tom' | 'Zurich' | 'Architect'
I have long list of attributes which makes my table row much longer, is there a way to present the data table in parts with a possible line break ?
As the data table goes alongside the code (BDD style) ... it becomes harder to reach to the columns while entering data.
Thanks!