Closed
Description
In this page (https://symfony.com/doc/current/testing.html#forms) you can find this example:
$form = $buttonCrawlerNode->form(array(
'name' => 'Fabien',
'my_form[subject]' => 'Symfony rocks!',
));
Is the use of name
instead of my_form[name]
... or the use of my_form[subject]
instead of subject
done on purpose? It's a bit confusing to me. Thanks!