Any one know how to use Selenium 2 with Phpunit? Are there any Selenium 2 samples in PHP?
feedback
|
|
please look at the http://code.google.com/p/php-webdriver-bindings/ . This is PHP library that communicates with Selenium Webdriver server using JsonWireProtocol. This is early version but it works. | |||||
feedback
|
|
At the time of writing, PHPUnit does not support Selenium 2. php-webdriver from facebook allows the complete WebDriver API to be called from PHP in an elegant way. To quote:
It is used by starting up the Selenium 2 server, which provides the interface at
then running the PHP test code, which calls that interface. For example:
The WebDriver API is mapped to PHP methods, compare calling The test code can then be wrapped in regular phpUnit tests. This is not native phpUnit support, but it's a quite robust approach. | |||||||||||
feedback
|
|
PHPUnit Selenium integration code lives as a separate project in github, as far as I can see it does not support Selenium 2, so the answer to your question would be - No, you can not use Selenium 2 with PHPUnit. But you can clone the source tree and make it work with Selenium 2. | |||
feedback
|
|
phpunit webdriver bindings are hosted on google code. There is something we need to understand beyond this.
| |||
|
feedback
|