在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):robotframework/MavenPlugin开源软件地址(OpenSource Url):https://github.com/robotframework/MavenPlugin开源编程语言(OpenSource Language):Java 79.0%开源软件介绍(OpenSource Introduction):MavenPluginMaven plugin for using the Robot Framework. Goal of this plugin is to be able to use Robot Framework in a Maven project without the need to install anything extra (e.g. Robot Framework, Jython, etc). In short, it's a non-invasive way of introducing acceptance test driven development to your existing projects quickly. Plugin documentation is available at http://robotframework.github.com/MavenPlugin/
Maven GoalsThe plugin currently has three goals:
Quick StartAdd the plugin to your build: <project>
<build>
..
..
<plugins>
..
..
<plugin>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<version>2.1.0</version>
<executions>
<execution>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
..
..
</plugins>
</build>
</project> By default, you can add your test cases to ${project.basedir}/src/test/robotframework/acceptance Third party libraries (e.g. Selenium Library) can be added to ${project.basedir}/src/test/resources/robotframework/libraries During mvn install invocation, run command will be invoked during the integration-test phase. For more detailed documentation please see http://robotframework.github.com/MavenPlugin/ NOTE: If needing plugin with Java 1.7, latest version supporting that is 1.4.9 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论