I am trying to read and print the data from a csv file using below karate scenario outline code snippet. the CSV file contains more than 350 rows of data with 2 columns "Description" and "Expression". But when I execute the below code snippet its running for more than 1hr and not generating any cucumber reports.
Note: the same code snippet works fine when the CSV file contains 50-100 rows
Scenario Outline: <Description>
And def result = {"items":{"name":'#(Description)',"expression":'#(Expression)'}}
Then def rule_description = result.items.name
Then print rule_description
Then def rule_expression = result.items.expression
Then print rule_expression
Examples:
| data_file |
Can someone please help and guide me what am I missing here.