且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在空手道中的单个功能文件中使用两个或多个csv文件?

更新时间:2023-10-17 14:42:46

没有空手道永远不会支持此功能.但是请注意,您可以在Background中创建数据源.

No Karate will never support this. But please note that you can create the data-source in the Background.

Background:
* def one = read('one.csv')
* def two = read('two.csv')
* def data = karate.append(one, two)

Scenario Outline:
* print __row

Examples:
| data |