我正在使用Cucumber-JVM和Selenium编写自动BDD测试。我定义了2个功能文件,每个功能文件都有2个方案,并且有两个用java编写的步骤定义文件。这是一个Maven项目,当我使用 maven test 构建项目时,它正在并行执行这两个功能,但我希望它们逐个执行。我们有办法做到这一点吗?
以下是Runner文件:
package Demo.Selenium.Cucumber;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@CucumberOptions(format = { "pretty", "html:target/cucumber",
"json:target_json/cucumber.json", "junit:taget_junit/cucumber.xml" }, tags = { "@Smoke" })
public class CukeTest {
}
如果您需要更多信息,请知道。