小编典典

在Maven构建过程中运行量角器测试

selenium

我有一个Maven项目,并且我不想更改POM,以便在构建项目(清洁+安装)时,在编译部分之后,将开始一组量角器测试(打开selenium并做几件事),并且只有如果测试通过,则构建本身通过。

我似乎找不到能给我这种功能的东西。有可能吗?如果可以,该如何使用?我们目前正在使用“ com.github.eirslett”
maven插件进行构建,我想知道是否可以在该插件中添加量角器测试作为一个阶段。我可以看到它支持使用’Karma’进行单元测试,但不支持与量角器有关的任何内容。

任何帮助都感激不尽!!谢谢 :)


阅读 213

收藏
2020-06-26

共1个答案

小编典典

您可以使用以下Maven插件https://github.com/greengerong/maven-ng-
protractor

你可以这样使用

<plugin>
  <groupId>com.github.greengerong</groupId>
  <artifactId>maven-ng-protractor</artifactId>
  <version>0.0.2</version>
  <configuration>
    <protractor>protractor</protractor>
    <configFile>yourconfig.js</configFile>
  </configuration>
  <executions>
    <execution>
    <id>ng-protractor</id>
    <phase>integration-test</phase>
    <goals>
       <goal>run</goal>
    </goals>
    </execution>
  </executions>
</plugin>
2020-06-26