Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am reading the Agile Web Application Development Book and I'm up to the part about testing. In this book they recommend installing Selenium and PHPUnit I have successfully installed Selenium R C and PHPUnit

Then I ran this command :

c:\wamp\www\yii\agile\protected\tests>phpunit functional/SiteTest.php

But it is not working . I got this error:

Warning: include(PHPUnit_Extensions_SeleniumTestCase_Driver.php): 
failed to open stream: No such file or directory in 
F:\xampp\htdocs\yii\framework\YiiBase.php on line 418

Warning: include(): Failed opening 'PHPUnit_Extensions_SeleniumTestCase_Driver.php' 
for inclusion (include_path='.;
    F:\xampp\htdocs\yii\app\protected\modules\user\components;
    F:\xampp\htdocs\yii\app\protected\modules\user\models;
    F:\xampp\htdocs\yii\app\protected\components;
    F:\xampp\htdocs\yii\app\protected\models;
    F:\xampp\php\PEAR') 
in F:\xampp\htdocs\yii\framework\YiiBase.php on line 418

Fatal error: Class 'PHPUnit_Extensions_SeleniumTestCase_Driver' not found in 
    F:\xampp\php\PEAR\PHPUnit\Extensions\SeleniumTestCase.php on line 602

Does anyone know how to fix this problem?

share|improve this question
There are a lot of similar questions on this topic: stackoverflow.com/search?q=%5Byii%5D+selenium – Örs Jun 12 '12 at 13:26

2 Answers

up vote 3 down vote accepted

You have to install the PHPUnit Selenium libraries manually with PEAR:

pear install phpunit/PHPUnit_Selenium
share|improve this answer

I have followed the above command and get:

"phpunit/PHPUnit_Selenium is already installed and is the same as the released version 1.2.12"

The error when I try and run my tests is:

Class 'PHPUnit_Extensions_SeleniumTestCase_Driver' not found 
in /usr/lib/php/pear/PHPUnit/Extensions/SeleniumTestCase.php:720
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.