ruby capybara_wait_until.rb

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby capybara_wait_until.rb相关的知识,希望对你有一定的参考价值。

# add this file capybara_wait_until.rb to your /test directory

module Capybara
  class Session
    ##
    #
    # Retry executing the block until a truthy result is returned or the timeout time is exceeded
    #
    # @param [Integer] timeout   The amount of seconds to retry executing the given block
    #
    # this method was removed in Capybara v2 so adding it back if not already defined
    #
    unless defined?(wait_until)
      def wait_until(timeout = Capybara.default_wait_time)
        Capybara.send(:timeout, timeout, driver) { yield }
      end
    end
  end
end

# Use it this way in /test/integration_test_helper.rb:

require 'capybara_wait_until'
module ActionController
  class IntegrationTest
    def wait_for_ajax_to_complete
      # pass timeout in seconds if you need to override default_wait_time
      page.wait_until { page.evaluate_script('jQuery.active === 0') }
    end
  end
end

以上是关于ruby capybara_wait_until.rb的主要内容,如果未能解决你的问题,请参考以下文章

ruby [Ruby Cheat] Cheatsheet #ruby

Ruby运算符

Ruby 25 岁了!Ruby 之父说 Ruby 3 有望 3 倍提速

如何学习ruby?Ruby学习技巧分享

ruby Ruby脚本,看看是否用openssl编译了ruby

什么是ruby?