现在形成,当我想对表格进行功能测试时,我这样做是:
$crawler = $this->client->submit($form, array(
'type[category]' => 'foo',
'type[administrable]' => '1',
));
我认为要以这种方式添加集合形式:
$crawler = $this->client->submit($form, array(
'type[fields][0][length]' => '5',
'type[fields][0][search]' => '1',
'type[fields][0][required]' => '1',
));
但它不工作!
DomCrawler/Goutte 支持 Collection 还是有特定的处理方式?