在Jenkins中运行Selenium测试

我已经记录了Selenium IDE的一些简单的硒测试.现在我想在Jenkins中运行这些测试.

我需要哪个Jenkins插件呢?以及如何逐步运行测试?感谢帮助. 最佳答案 您可以使用记录的selenium IDE脚本和selenium-server.jar文件从Jenkins运行它

这是步骤:

>转到SeleniumHQ页面并下载Selenium Server文件
    例如:selenium-server-standalone-2.33.0.jar
>修复html测试套件使用Selenium IDE记录然后另存为
然后将html测试用例和测试套件放在同一个文件夹中
      例如:TestCase.html,TestSuite.html
>在jenkins

>插件Seleniumhq
>配置Selenium runner文件
  管理Jenkins>配置系统> Selenium远程控制:htmlSuite Runner =文件路径u已在步骤1中下载
>配置要运行的作业
  在Build字段中单击“Add build step”,然后选择“seleniumhq htmlSuite Run”
  浏览器:* firefox或* iexploer ….
  startURL:http://www.google.com或……
  suiteFile:输入步骤2中保存的TestSuite.html文件的绝对路径
  resultFile:输入文件的绝对路径,结果将被保存

希望这有帮助!

点赞