解决方法
如果这是基于
javascript的警报,则需要使用类似:selenium驱动程序的内容.
# Set selenium as the default driver for javascript Capybara.javascript_driver = :selenium # Register chrome browser for the :selenium driver Capybara.register_driver :selenium do |app| Capybara::Selenium::Driver.new(app,:browser => :chrome) end
在这样做并使用@javascript标记您的场景时,只需使用类似的步骤然后我应该看到“请填写此字段”应该可行.
I have a gist up that summarizes using :selenium,:capybara-webkit,headless gem for both development and continuous integration.它可能对您的设置有所帮助,但它可能比您目前正在寻找的更多.