在 Rails 3 上使用 Cucumber 测试 uploadify
我想要在 ruby on Rails 3 上进行上传测试的黄瓜测试。我曾尝试单击水豚的上传按钮,但因为它既不是按钮也不是链接。此外,它隐藏了 text_field,因此我无法编写“当我用“text.txt”填写“上传”时”。如果有人解决了这个问题,请在这里提供帮助。
I want cucumber test for uploadify on ruby on rails 3. I had tried to click on the upload button from capybara but as it is neither button nor link. Furthermore, it is hiding the text_field so I cannot write "When I fill in "upload" with "text.txt"". If any one has solved this problem, please help is needed here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编写上传文件
Cucumber 步骤的自定义步骤,例如
当我将文件“/images/back.gif”附加到“data_input”时
Write custom step for uploading a file
Cucumber Step like
When I attach the file "/images/back.gif" to "data_input"
您需要编写一个自定义步骤来上传文件,
其中 image 是用于获取要上传的文件的 html 元素的名称。
You would need to write a custom step for uploading a file
Where image is the name of the html element for getting the file to be uploaded.