Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

casenjo's avatar

Can't select a checkbox from a group of checkboxes

I'm trying to write a simple unit test to tick a few checkboxes from a group of checkboxes and then submit the form. The names of the checkboxes are all "answer_id[]" so that I can receive them as an array when the form is submitted.

I wrote:

$this->visit('/start')
             ->see($this->question->text)
             ->check("answer_id[]")
         ->press("Submit");

but when I run the test I get this error message:

InvalidArgumentException: Unreachable field ""

Any one know what's going on?

0 likes
2 replies

Please or to participate in this conversation.