UNIXライクでMavenを使用してCucumberを実行しようとしています(残念ながら、cmd.exeでも同じ結果が得られますが、Windowsを使用する必要があります)コマンドライン:
mvn clean test -Dcucumber.options="src/test/resources/com/example/sqa/automation_cuke/pages/sample_test.feature"
結果:
Results :
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
...
[INFO] --- exec-maven-plugin:1.2.1:java (default) @ sqa.automation_cuke ---
Feature: My animals Sample
Sample test to use as basis for conversion
Scenario: My animals # sample_test.feature:4
Given that I have my animals
1 Scenarios (1 undefined)
1 Steps (1 undefined)
0m0.000s
You can implement missing steps with the snippets below:
@Given("^that I have my animals$")
public void that_I_have_my_animals() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}
このエラー メッセージと同様のエラー メッセージについて、上位の Google/SO 検索をすべて調べました。Cucumber can't find steps when running a single featureやCucumber not find step definitionsなどの多くは、ステップ定義を-r
および --require パラメーターで指定すると言いますが、ある時点で Cucumber から削除されたようです。エラーを取得しUnknown option: -r
ます。
他の多くの回答では、@CucumberOptionsグルー パラメータが正しく定義されていない場合に、このエラーが (奇妙なことに) 発生すると述べています。しかし、私は次の接着剤を試しましたが、どれもうまくいきませんでした:
sqa.automation_cuke.pages
path:sqa.automation_cuke.pages
classpath:sqa.automation_cuke.pages
com.example.sqa.automation_cuke.pages
classpath:com.example.sqa.automation_cuke.pages
path:com.example.sqa.automation_cuke.pages
C:/development/cucumber-demo/src/main/java/com/example/sqa/automation_cuke/pages
src/main/java/com/example/sqa/automation_cuke/pages
classpath:C:/development/cucumber-demo/src/main/java/com/example/sqa/automation_cuke/pages
classpath:src/main/java/com/example/sqa/automation_cuke/pages
path:src/main/java/com/example/sqa/automation_cuke/pages
C:\\development\\cucumber-demo\\src\\main\\java\\com\\example\\sqa\\automation_cuke\\pages
src\\main\\java\\com\\example\\sqa\\automation_cuke\\pages
classpath:src\\main\\java\\com\\example\\sqa\\automation_cuke\\pages
path:src\\main\\java\\com\\example\\sqa\\automation_cuke\\pages
私も試しました:
- で --glue を定義し
-Dcucumber.options
ます。 - ソースコードのディレクトリ構造を src/test/java/example/automation_cuke、src/main/java/example/automation_cuke、src/test/resources/example/automation_cuke などに変更します。
- .feature ファイルをメイン...リソースに配置します。
- など、@Given のさまざまなテキスト
@Given("that I have my animals")
。
これが私のプロジェクト構造です。この回答に従って、リソース構造が残りのコードと一致することを確認しました。
sample_text.feature:
Feature: My animals Sample
Sample test to use as basis for conversion
Scenario: My animals
Given that I have my animals
MySampleTest.java:
package com.example.sqa.automation_cuke.pages;
@RunWith(Cucumber.class)
@CucumberOptions(glue = {"com.example.sqa.automation_cuke.pages"})
public class MySampleTest {
@Given("^that I have my animals$")
public void that_I_have_my_animals() throws Throwable {
// Write code here that turns the phrase above into concrete actions
System.out.println("MySampleTest.that_I_have_my_animals() ran!");
new MySample().printMySample();
throw new PendingException();
}
}
pom.xml:
<?xml version="1.0" encoding="UTF-8"?>
<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>com.example</groupId>
<artifactId>sqa.automation_cuke</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<cucumber-jvm.version>1.2.4</cucumber-jvm.version>
<selenium.version>2.53.0</selenium.version>
<junit.version>4.12</junit.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<executableDependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-core</artifactId>
</executableDependency>
<mainClass>cucumber.api.cli.Main</mainClass>
<arguments>
<argument>--plugin</argument>
<argument>junit:target/cucumber-junit-report/allcukes.xml</argument>
<argument>--plugin</argument>
<argument>pretty</argument>
<argument>--plugin</argument>
<argument>html:target/cucumber-html-report</argument>
</arguments>
</configuration>
<dependencies>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-core</artifactId>
<version>${cucumber-jvm.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-picocontainer</artifactId>
<version>${cucumber-jvm.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-core</artifactId>
<version>${cucumber-jvm.version}</version>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>${cucumber-jvm.version}</version>
</dependency>
<!-- http://mvnrepository.com/artifact/info.cukes/cucumber-java -->
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>${cucumber-jvm.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.7</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
</project>
どんな助けでも大歓迎です!