作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在Capybara提供的文档中,您可以在特定的测试组上更改default_driver:
describe 'some stuff which requires js', :js => true do
it 'will use the default js driver'
it 'will switch to one specific driver', :driver => :selenium
end
When /^I do something$/ do
fill_in "a_text_box", :with => "stuff"
fill_in "another_text_box", :with => "another_thing"
end
最佳答案
在 cucumber 中,我分两个步骤完成了此操作:
在/features/support/env.rb
中,放置以下行:
Capybara.javascript_driver = :webkit
@javascript
,如下所示:
@javascript
Scenario: Successful sign in - with no flash message if using current firefox
When I'm using a current version of Firefox
When I visit the practitioner home page with "jane.doe@example.com"'s token
Then I should be signed in as practitioner "Jane Doe"
And I should be on the practitioner activities welcome page
And I should not see a flash message warning me I have an unsupported browser
javascript
驱动程序。
关于ruby-on-rails - 如何在Capybara中更改 cucumber 默认测试的默认驱动程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10508741/
我是一名优秀的程序员,十分优秀!