有人可以向我解释为什么中间有 closeWindow() 函数的测试用例因与服务器的通信错误而失败,而另一个则没有:
失败的:
public function test1()
{
$this->url('http://www.yahoo.com');
$this->closeWindow();
$this->url('http://www.google.com');
}
通过:
public function test1()
{
$this->url('http://www.yahoo.com');
$this->url('http://www.google.com');
}
closeWindow() 不像 close() 那样清除会话,对吧?