我使用selenium进行e2e测试,我试图将其纳入构建过程。我打算让服务器充当集线器。我有一个sh文件,执行时运行selenium独立服务器jar。
这个问题是我必须手动运行sh文件才能进行mvn测试。如何在测试之前配置maven来运行文件?
答案 0 :(得分:1)
您可以在MVN的pom.xml文件中添加插件的一部分。
这里有一个例子
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.test.shellscript</groupId>
<executions>
<execution>
<id>script-runner</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>script.sh</executable>
</configuration>
</execution>
</executions>
</plugin>