黄瓜 +韦伯拉特硒指南
我使用 Cucumber 和 Webrat 一段时间了。我现在需要开始编写涉及 AJAX 交互的行为,因此我考虑使用 Webrat 的 Selenium 适配器。 任何人都可以指出安装和配置 selenium+webrat+cucumber 的简单且更新的分步指南吗? 我希望能够将 javascript 场景与非 javascript 场景混合在一起。
I have been using Cucumber and Webrat for a while. I now need to start writing behaviour that involve AJAX interactions so I was thinking to use the Selenium adapter for Webrat.
Can anyone point out a easy and updated step-by-step guide for installing and configuring selenium+webrat+cucumber?
I would like to be able to mix javascript scenario with non-javascript scenarios.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在项目中使用 Selenium 和 rspec,并从 Selenium IDE 的自定义格式化程序生成代码。
Rails 有很多硒,但我成功使用 Selenium-RC http://seleniumhq.org/download/ ,所以下载到您的电脑。
这是我的步骤:
现在,您只需将规范导出到我的规范文件夹中,我使用spec/features/xxxx_spec.rb,请参阅下面的代码。
非常类似的方法可以在此处找到
对于webrat +cucumber,最新的Rspec 书将满足您所需的一切。 (他们还没有完成硒+黄瓜章节)
示例
I'm using Selenium with rspec on my project and generate code from a custom formatter for Selenium IDE.
There is many selenium for rails but i success using Selenium-RC http://seleniumhq.org/download/ , so download to your pc.
Here are my steps:
Now, You just export spec to your spec folder for me, I use spec/features/xxxx_spec.rb see code below.
Very similar approach can find at here
For webrat+cucumber, the latest Rspec book will give all you need. (They don't have selenium + cucumber chapter finish yet)
example