我有一个从thucydides-jbehave-archetype构建的项目
我正在尝试按照这些步骤更改运行我的项目时运行 Thucydides 的浏览器 http://thucydides.info/docs/thucydides/_running_thucydides_in_different_browsers.html
在 pom.xml 我有这个(来自 thucydides 原型):
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.11</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
根据说明,我已将其更改为:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.11</version>
<!--
<configuration>
<skip>true</skip>
</configuration>
-->
<configuration>
<systemPropertyVariables>
<webdriver.driver>${webdriver.driver}</webdriver.driver>
</systemPropertyVariables>
</configuration>
</plugin>
我还更改了属性部分中的值:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<thucydides.version>0.9.205</thucydides.version>
<thucydides.jbehave.version>0.9.205</thucydides.jbehave.version>
<!-- I have tried chrome too -->
<webdriver.driver>safari</webdriver.driver>
</properties>
但我的测试仍在使用默认浏览器(firefox)运行。我在这里做错了什么?