当我从https://github.com/intuit/karate#configuration
学习空手道框架时我尝试了以下脚本( variables.feature )并执行了。它似乎无法正常工作。任何人都可以帮忙解决这个问题吗?我附上了我的项目结构供您参考?
Feature: working with variables
Scenario: assigning values to the variables
Given def myVar = 'world'
Then print myVar
* def myNum = myAge
* print myNum
附件:
使用一些代码段获取以下消息。
您可以使用以下代码段实现缺少的步骤:
这是我的 pom.xml 文件内容:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.syntel.apitesting</groupId>
<artifactId>WebservicesTest</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-apache</artifactId>
<version>0.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-junit4</artifactId>
<version>0.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-testng</artifactId>
<version>0.6.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<testResources>
<testResource>
<directory>src/test/java</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
</build>
</project>
由于
答案 0 :(得分:1)
您还没有提到您如何运行该功能,但让我猜一下,您正在尝试使用Eclipse IDE支持。
您是否可以尝试阅读此问题并查看是否有帮助,谢谢:https://github.com/intuit/karate/issues/90
编辑:哦,天哪,看起来你正在使用Java 5!请使用Java 8。EDIT2:正如您在其他答案中所说,您只需要使用JUnit跑步者。
答案 1 :(得分:1)
最后,我得到了结果并能够看到正确的反应。早些时候我正在使用执行variable.feature
文件,因为我说Right Click -> Run As -> Cucumber Features
这是错误的。转到TestRunner.java
文件,然后转到Right Click -> Run As -> JUnit Test
。