Can we pass the excel file or .csv file as a table input in karate feature file
问题 In Karate, we are parameterizing with the below values. Do we have any option of passing the table as external file in karate. And table tablename | name | age | id | | abc | 02 | 01 | | def | 03 | 02 | And def values = { "name": '(#name)', "age": '(#age)', "id" : '(#id)' } Expecting below in karate framework. And table <tablefile.xls> And def values = { "name": '(#name)', "age": '(#age)', "id" : '(#id)' } 回答1: There are multiple ways, the most recommended is to use JSON for maintaining test