我有以下由 symfony 生成的输入字段:
<input type="text" id="my_project_localebundle_citytype_name"
name="my_project_localebundle_citytype[name]" required="required"
maxlength="45" class="text">
我正在写这样的场景:
@javascript
Scenario: Add a city
Given I follow "Locales"
And I follow "Add city"
Then I fill in "name" with "Testing 1 2 3"
...
但是找不到该字段
Form field with id|name|label|value "name" not found.
我知道我可以输入完整的 ID 或姓名,但它太长了,我想保留它,有没有更容易在我的场景中填写它而不编辑我的输入的方法?