不能运行黄瓜。获取错误"警告:不推荐使用Cucumber-JVM& - format选项。请改用--plugin"

时间:2015-10-06 03:45:38

标签: java selenium-webdriver cucumber

我是黄瓜新手,我从头开始学习,当我尝试执行我的第一个功能文件时,我收到了这个错误。我在谷歌搜索这个错误,根据我的发现我替换 - 格式与--plugin.But仍然当我尝试执行我得到相同的错误。具体来说,我清理工作区,我切换了新的工作区,但没有任何帮助我...请帮助我。 我的编码如下:

package cucumber;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;

@RunWith(Cucumber.class)

@CucumberOptions(
        plugin = {"pretty","json:target/cucumber.json"},
        features = {"src/cucumber/"}
        )

public class CucumberRunner {

    }

myfeature.feature

Feature: Checking login authentication

Scenario: Check loign

Given I am in application page
When I given login credentials
Then I check i am on home page
And I close the browser

0 个答案:

没有答案