Any one know how to use Selenium 2 with Phpunit? Are there any Selenium 2 samples in PHP?
|
|
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. |
|||||||
|
|
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. |
|||||||||||||
|
|
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. |
|||||
|
|
We created a library for that, I hope it helps. It also uses the JSON Wire protocol but we aimed to make it compatible with the examples from other languages, so the syntax would be very similar. Here's the link: https://github.com/Nearsoft/PHP-SeleniumClient If you like it, share it, improve it or fork it :) Regards, Mark. |
|||
|
|
|
phpunit webdriver bindings are hosted on google code. There is something we need to understand beyond this.
|
|||
|
|
|
I wrote a tutorial about how to use Selenium 2, Facebook wrapper, find it here: http://testigniter.blogspot.co.uk/2012/01/running-selenium-2-webdriver-using.html |
|||
|
|