将集合表单添加到DomCrawler中

时间:2012-07-24 16:20:40

标签: symfony goutte

现在表格,当我想在表格上进行功能测试时,我这样做是:

$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>

1 个答案:

答案 0 :(得分:2)

听起来像是一个开放的错误:

https://github.com/symfony/symfony/issues/4124