我正在编写一个小功能测试,使用DomCrawler填写并提交表单。但是,在填充选择方面,我遇到了严重的问题。我怎样才能做到这一点?
$crawler = $this->client->request('GET', '/post/new');
$form = $crawler->selectButton('new')->form();
$form['form[name]'] = 'Test';
$form['form[category][]'] = '1';
$crawler = $this->client->submit($form);
无论如何,我总是得到一个InvalidArgumentException。
答案 0 :(得分:3)