现在表格,当我想在表格上进行功能测试时,我这样做是:
$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或者有特定的方法来处理它?</ p>