3
我正在使用WebTest測試表單。但是,有些字段是使用JS動態創建的,因此這些字段不在Form中。當我嘗試設置其中一個字段時,出現錯誤:我可以使用WebTest添加非現有字段嗎?
>>> resp.form['new_field'] = 'value' or >>> resp.form.set('new_field', 'value') or >>> resp.form.set('new_field', 'value', index=0) or >>> resp.form['new_field'].force_value('value') *** AssertionError: No field by the name 'new_field' found
有沒有辦法創建字段?
'form.fields'現在將值存儲爲'list'。 –