, :
FF3.6 FF4.1, , Selenium IDE FF4.1, FF3.6.17. :
. Add the environment variable DEFAULT_BROWSER as
"*custom path/to/firefox 3.6/firefox.exe"
. $TESTS_SELENIUM_BROWSER= getenv('DEFAULT_BROWSER') ? ...
in php code
. write a test class like
class myTests extends PHPUnit_Extensions_SeleniumTestCase{
....
protected function setUp()
{
$this->setBrowser($TESTS_SELENIUM_BROWSER);
....
}
}
hope this helps :)
source
share