问题
Input I am trying to fill:
<input type="text" id="order-number" name="order_numbers[]" class="form-control">
My unit test code:
public function testSearch()
{
$this->actAsUser();
$this->visit('/orders')
->type('12001546', 'order_numbers[]');
}
Error I am getting:
1) OrdersTest::testSearch
InvalidArgumentException: Unreachable field ""
回答1:
I had the same problem, couldn't find a better solution than
// TestCase.php
protected function storeArrayInput($values, $name)
{
$this->inputs[$name] = $values;
return $this;
}
// YourTest.php
public function testSearch()
{
$this->actAsUser();
$this->visit('/orders')
->storeArrayInput(['12001546'], 'order_numbers');
}
来源:https://stackoverflow.com/questions/38203598/laravel-unit-test-with-input-with-array-name