如何从带标签的maven中执行 cucumber ?
我试过的是
1.MVN清理测试-Dcucumber.filter.tag=“@TestTag”
1.MVN test-Dcucumber.Options=“--tag‘@TestTag’”
我的pom.xml针对的是testng.xml文件(有没有办法避免从.xml文件直接使用场景或功能文件的标记名执行脚本?)
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.21.0</version>
<configuration>
<suiteXmlFiles>
<!-- <suiteXmlFile>testng.xml</suiteXmlFile> -->
<suiteXmlFile>${suiteXmlFile}</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
- 我使用的是cucumber.io 7.0.0*
1条答案
按热度按时间euoag5mw1#
请使用以下命令,我们不应使用单引号
对于多个,