selenium是一个非常棒的测试web应用的工具。特别是使用Selenium Remote Control (RC)
,你可以在多种操作系统下用多种浏览器测试你的web应用,并且可以使用多种语言编写testcase,当然包括Java。
参考: http://seleniumhq.org/
下文讨论了如何在maven2的环境下实现一键式的集成测试,进而可以使用持续集成工具完成自动化的持续集成。
测试环境:
ubuntu 8.10
JDK6
maven2
tomcat6
maven2的默认生命周期中的阶段中在package之后有:
pre-integration-test |
执行一些在集成测试运行之前需要的动作。如建立集成测试需要的环境 |
integration-test |
如果有必要的话,处理包并发布至集成测试可以运行的环境 |
post-integration-test |
执行一些在集成测试运行之后需要的动作。如清理集成测试环境。 |
那么要做的事情就很清楚了,
第一步:在pre-integration-test阶段,把package阶段打好的war包redeploy到tomcat。
把Selenium Remote Control(RC)启动起来
第二步:在integration-test阶段,运行selenium的test cases
第三步:在post-integration-test阶段,把Selenium Remote Control(RC)停止
我的pom.xml代码片段:
<build>
...
<plugins>
...
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin
</artifactId>
<configuration>
<url>http://www.test.com:8080/manager</url>
<server>test</server>
<path>/</path>
</configuration>
<executions>
<execution>
<phase>pre-integration-test</phase>
<goals>
<goal>undeploy</goal>
<goal>deploy-only</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>selenium-maven-plugin
</artifactId>
<executions>
<execution>
<id>start</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start-server</goal>
</goals>
<configuration>
<background>true</background>
</configuration>
</execution>
<execution>
<id>stop</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop-server</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin
</artifactId>
<configuration>
<includes>
<include>com/demo/action/**/*Test.java</include>
</includes>
</configuration>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<skip>false</skip>
<includes>
<include>selenium/*Test.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
...
</plugins>
</build>
tomcat-maven-plugin的配置请参考 http://blog.csdn.net/dqatsh/archive/2009/02/18/3905274.aspx
这里在配置文件中使用了execution把plugin的某个goal绑定到生命周期的某个阶段。
但对于maven-surefire-plugin这个plugin来说,它缺省就被绑定到test这个阶段了。由于其中的test cases既有单元测试的,又有selenium集成测试的,所以用include来过滤区分一下,保证不同的阶段运行所需要运行的测试。
分享到:
相关推荐
标题中的“博客https://blog.csdn.net/weixin_49457347/article/details/1236所需文件”表明这是一个与特定博客文章相关的压缩包,但没有提供足够的信息来直接解释博客的内容。从描述中也无法获取更多细节,它只是...
技术精品文章,请访问CSDN博客:http://blog.csdn.net/ 全球最大的中文技术讨论区,请访问CSDN论坛:http://bbs.csdn.net/ 分享您认为最好的内容,请访问CSDN网摘:http://wz.csdn.net/ IT企业觅人才,个人找...
技术精品文章,请访问CSDN博客:http://blog.csdn.net/ 全球最大的中文技术讨论区,请访问CSDN论坛:http://bbs.csdn.net/ 分享您认为最好的内容,请访问CSDN网摘:http://wz.csdn.net/ IT企业觅人才,个人找工作,请...
https://blog.csdn.net/a6661314/article/details/124358796的实验文件
(注:該專欄中又引用《Jo Muncher's Blog》http://blog.csdn.net/JoMuncher/archive/2007/11/02/1862977.aspx) 看到DataGridView 多维合并标题,感覺很好,而且自己正在學寫控件(面向對象的概念還很模糊),所以好好...
简单的学生信息管理系统,实现对用户类型的不同权限管理(增删改查). 文章介绍:https://blog.csdn.net/qq_56886142/article/details/122740969?spm=1001.2014.3001.5501
图像对比,博客https://blog.csdn.net/bigdata1994pb/category_11750065.htm图像对比,博客https://blog.csdn.net/bigdata1994pb/category_11750065.htm
JQuery基础教程之前言和前三章:http://download.csdn.net/source/745869 JQuery基础教程之第四章:http://download.csdn.net/source/745907 JQuery基础教程之第五章:http://download.csdn.net/source/745975 JQuery...
http://blog.csdn.net/zhangerqing/article/details/8239539 https://my.oschina.net/viakiba/blog/795797
此更新包仅限于升级已有的程序至最新版(如从V1.0版、V1.1版、V1.2版、V2.0版、V2.1版、V2.5版、V3.0版以及V3.2标准版升级到V3.2增强版),如果您之前...程序链接:http://blog.csdn.net/vbcom/article/details/7245186
DataList分页1:http://blog.csdn.net/zhyuanshan/archive/2007/10/30/1855507.aspx DataList分页2: http://blog.csdn.net/zhyuanshan/archive/2008/01/10/2033688.aspx
顺序表:https://blog.csdn.net/HAIIAKU/article/details/119302855 单链表:https://blog.csdn.net/HAIIAKU/article/details/119303873 顺序栈:https://blog.csdn.net/HAIIAKU/article/details/119304169 冒泡排序...
这是本人过去收集网上的清晰扫描图片,和预览样章合并制成的pdf。由于当时是自已学习用,所以边看边制目录书签。现在放上来希望能攒点分。由于文件有127M大,所以...第六分卷:http://download.csdn.net/source/3000440
主要讲述以http://blog.csdn.net/LCL_data/archive/2009/12/09/4974499.aspx中的链表逆序为模板来讲述指针的使用
详情看我的我的文章https://blog.csdn.net/wsxybz/article/details/128486717
http://blog.csdn.net/xiangjianbo127/article/details/8610007 http://blog.csdn.net/xiangjianbo127/article/details/8610413 http://blog.csdn.net/xiangjianbo127/article/details/8610755 ...
springboot+sharding sphere+mybatis 分库分表 文章 https://blog.csdn.net/weixin_42749765/ https://blog.csdn.net/weixin_42749765/article/details/130529127
Socket实战——UDP连接:https://blog.csdn.net/haoranhaoshi/article/details/86601468 Socket实战——TCP连接:https://blog.csdn.net/haoranhaoshi/article/details/86601522 Socket实战——查询数据库:...
软件的安装和使用说明可以参考博文《手把手教你上手Proteus(下载安装+仿真51单片机程序)》( https://xiaohuisuper.blog.csdn.net/article/details/121993865 ) Proteus软件的功能很强大,它集合了电路仿真、PCB...
[license]https://download.csdn.net/download/qq345162168/12579760 [part1]https://download.csdn.net/download/qq345162168/12579642 [part2]https://download.csdn.net/download/qq345162168/12579654 [part3]...