我使用本教程http://net.tutsplus.com/tutorials/php/how-to-use-selenium-2-with-phpunit/创建了测试。一切正常,但我只能在 Firefox 上启动此测试。我在互联网上阅读了很多关于此的文章,但我没有找到任何解决方案。我有 Sebastian Bergmann 的 Windows XP、PHP 5.4.7、PHPUnit 3.7.13。在运行测试之前,我启动了 selenium-server-standalone-2.28.0.jar。有我的测试
<?php
class Example extends PHPUnit_Extensions_Selenium2TestCase
{ protected function setUp()
{
$this->setBrowser("firefox");
$this->setBrowserUrl('http://test.com/');
}
public function testogin()
{
$this->url('http://test.com/');
$this->timeouts()->implicitWait(10000);
$username = $this->byId('user_login');
$username->value('test.ru');
$password = $this->byId('user_pass');
$password->value('test');
$this->byId('login_btn')->click();
}
}
?>
请帮我在其他浏览器上运行这个测试。如果您需要更多信息,请询问我。谢谢