我是黄瓜新手。我创建了一个简单的黄瓜脚本,以在浏览器中启动Google。我正确地创建了功能,步骤和运行器类。当我运行Runner类时,junit结果显示为绿色,但场景未执行(浏览器未启动)。检查结果并尝试双击时,显示“在所选项目中未找到测试类”。
我已经尝试在Build path-> Order&Export选项中更改JRE的顺序。这是Eclipse。JUnit result image
这是跑步类:
package Runners;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@CucumberOptions(features="Features/ChromeTest.feature",glue= {"src/test/java/Steps"})
public class ChromeRunner {
}
答案 0 :(得分:0)
我假设您还将功能文件也保留在src / test / java路径内
如果是这样,请尝试使用
@CucumberOptions(features =“ src / test / java / features”,glue =“ steps”)
或
@CucumberOptions(features =“ src / test / java / features”,glue =“ src / test / java / steps”)
**假设您已在src / test / java路径中将功能和步骤作为包创建了