如何用cucumber和webrat处理隐藏字段?
我必须设置一个选择日期字段,并丢弃月份和日期。因此,月份和日期隐藏在表单中,这导致在执行 Cucumber 场景时出现“# (NoMethodError) 的未定义方法‘选项’”。
我怎样才能解决这个问题并将年份正确地纳入黄瓜步骤?
I have to set a select date field with the month and day discarded. So Month and day are hidden in the form which caused a "undefined method `options' for # (NoMethodError)" when executing the cucumber scenario.
How can i solve this issue and get the year correctly into the cucumber step ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我找到了一个解决方案:
定义我自己的黄瓜步骤,我使用 webrat set_hidden_field 方法,如下所示:
希望这可以帮助某人
well i found a solution :
Define my own cucumber steps into which i use the webrat set_hidden_field method like this :
Hope this can help someone