我正在编写 Behat 测试,我需要更改隐藏输入字段的值
<input type="hidden" id="input_id" ..... />
我需要更改此输入字段的值,但我不断收到
Form field with id|name|label|value "input_id" not found
我一直在使用步骤
$steps->And('I fill in "1" for "input_id"', $world);
是否需要做一些特别的事情来修改隐藏的输入字段?