功能文件指向一个不存在的项目

时间:2019-02-18 07:22:00

标签: selenium cucumber

我正在为我的应用程序编写一个Cucumber-TestNG-Selenium框架。我可以从Runner类执行测试用例,但是当我尝试通过功能文件执行相同的测试用例时,我得到一个错误,该错误指向某个不存在的项目。 enter image description here

上图是功能文件的“运行方式配置”属性的快照,并且类路径中有错误。

当我删除此文件并创建一个新文件时,出现以下错误:

Exception in thread "main" java.lang.IllegalArgumentException: Expected scheme-specific part at index 10: classpath:
    at java.net.URI.create(URI.java:852)
    at io.cucumber.core.model.GluePath.parseAssumeClasspathScheme(GluePath.java:54)
    at io.cucumber.core.model.GluePath.parse(GluePath.java:34)
    at cucumber.runtime.RuntimeOptions.parse(RuntimeOptions.java:160)
    at cucumber.runtime.RuntimeOptions.<init>(RuntimeOptions.java:107)
    at cucumber.runtime.RuntimeOptions.<init>(RuntimeOptions.java:100)
    at cucumber.runtime.RuntimeOptions.<init>(RuntimeOptions.java:96)
    at cucumber.runtime.Runtime$Builder.withArgs(Runtime.java:131)
    at cucumber.runtime.Runtime$Builder.withArgs(Runtime.java:127)
    at cucumber.api.cli.Main.run(Main.java:22)
    at cucumber.api.cli.Main.main(Main.java:8)
Caused by: java.net.URISyntaxException: Expected scheme-specific part at index 10: classpath:
    at java.net.URI$Parser.fail(URI.java:2848)
    at java.net.URI$Parser.failExpecting(URI.java:2854)
    at java.net.URI$Parser.parse(URI.java:3057)
    at java.net.URI.<init>(URI.java:588)
    at java.net.URI.create(URI.java:850)
    ... 10 more

我能够通过testng.xml和Cucumber Runner文件执行测试用例。

请让我知道如何解决此错误

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:2)

我也遇到同样的错误。如果您使用的是黄瓜v4.2.3。使用v4.2.2并尝试。对我来说,它奏效了。

答案 1 :(得分:0)

转到Cucumber Feature Runner选项卡,然后检查相应设置的以下三个字段。

  1. 项目
  2. 功能路径
  3. 胶水

如果所有设置均正确,则应正确执行。