Integration of automated testing in hudson using selenium framework

I'm new to web development and web testing. And I want to use Hudson in my continous integration and for my automated testing using selenium. How can I integrate the selenium in hudson, so that everytime I build using hudson, it will automatically execute the automated testing in selenium? What application should I install? By the way I'm using ubuntu as my OS.

I'm building my webapp using asp.net and C#.

Please advise.

Thanks.


You would invoke the tests like you would for your normal unit tests. Assuming that you are creating your tests to be run with NUnit then you will need to make sure that that is installed.

Setting up your Selenium project, like a normal class library project, that builds a dll that can run your tests should suffice.


您可以将您的Selenium-TestNG / Nunit框架与Maven,Maven构建路径集成到Jenkins / Hudson中。

链接地址: http://www.djcxy.com/p/8956.html

上一篇: 验证的Selenium语法适用于Hudson / jenkins

下一篇: 使用硒框架在哈德森集成自动化测试