ありがとうKeith Tyler。私はコードを少し演奏し、やっと私はそれを行うことができました。
誰かにとって役に立ちそうなので、ここにコードを入れておきます。
まず最初はPHPUnit_Extensions_Selenium2TestCaseを拡張するクラスを作成することです:
class Browser extends PHPUnit_Extensions_Selenium2TestCase
{
public function __construct(){
parent::__construct();
$this->setHost("127.0.0.1");
$this->setPort(4444);
$this->setBrowser("firefox");
$this->setBrowserUrl("url");
$this->prepareSession(); // this does the trick
}
}
次に、あなたがこのようにそれを使用することができます:
$this->url("url1"); // $this will be the default browser
$browser2 = new Browser(); // $browser2 is the new browser and has all the functions from phpunit and selenium available
$browser2->url("url2");
それは誰かに時間を節約することを願っています。