0

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

$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 还是有特定的处理方式?

4

1 回答 1

2

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

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

于 2012-07-29T09:39:00.980 回答