What would you recommend for testing integration in a PHP web application?

I tested a web application written in PHP and JavaScript, and I am looking for integration testing tools that can be well communicated using a continuous integration server, perhaps phpUnderControl.

As an integration testing tool, I used Selenium with Rspec, which works just fine. It creates html report files and it is very easy to write codes. But I'm not sure that Selenium can interact with CI and I wonder if there are any integration tools that can communicate with a continuous integration server, such as phpUnderControl, and work with other testing tools to automate testing.

I would really appreciate any suggestions.

Best wishes

@naoyamakino

+6
php continuous-integration selenium integration-testing qa
source share
3 answers

Selenium works with any testing environment, if there is a library, or you can roll it yourself without much effort. There is PHPunit support for Selenium, so it won't take a lot of effort to run your tests.

If the CI server can run tests, it can run Selenium and control the browser for your tests.

+2
source share

Selenium is a great idea. Adhere to. CruiseControl.Net example is here .

0
source share

iMacros for Firefox with command line support is a very easy to use option.

0
source share

All Articles