有没有办法从黄瓜特征文件场景中调用空手道的特征文件场景?

Is there a way to call Karate's feature file scenario from Cucumber feature files scenario?

我想在 Cucumber 的功能文件场景中重用我的空手道场景。关于如何实施或是否可行有任何想法吗?

应该使用 Java API: https://github.com/intuit/karate#java-api

因此在您的 "normal" Cucumber 步骤定义中:

Map<String, Object> result = Runner.runFeature("classpath:demo/java/from-java.feature", args, true);

但也请阅读此主题:https://github.com/intuit/karate/issues/444#issuecomment-419852761