Capybara页面模型非常慢

时间:2014-09-24 23:42:40

标签: performance rspec capybara poltergeist

我正在重构我的集成规范以使用页面对象模式。我正在测试没有数据库的JS应用程序。我正在使用poltergest。

当我将选择器抽象为页面对象时,我的测试速度大大降低。

require 'benchmark'

class HostsPage
  include Capybara::DSL

  def has_search_results?
    has_css?('.results')
  end
end

feature 'blaa blaa' do
  let(:host) { HostsPage.new }

  before do
    visit('/')
    click_link 'Query Hosts'
  end

  scenario 'User does something' do
    puts Benchmark.measure { host.has_search_results? }
    puts Benchmark.measure { have_css('.results') }

    skip
  end
end

输出:

0.030000   0.010000   0.040000 (  2.051050)
0.000000   0.000000   0.000000 (  0.000008)

正如您所看到的,第一个结果比第二个结果慢得多,除了页面对象抽象之外,测试基本相同。

我的spec_helper是:

require 'capybara/rspec'
require 'capybara/poltergeist'

Dir[File.expand_path(File.join(File.dirname(__FILE__), 'support', '**', '*.rb'))].each { |f| require f }

RSpec.configure do |config|
  config.order = :random
  config.warnings = false

  Capybara.default_driver = :poltergeist

  Capybara.app = App.new # this points to a basic Sinatra app that serves index.html
end

我如何追踪它?原因是什么?

1 个答案:

答案 0 :(得分:1)

它与页面模型无关:

puts Benchmark.measure { has_css?('.results') }
puts Benchmark.measure { have_css('.results') }

返回

0.030000   0.010000   0.040000 (  2.005658)
0.000000   0.000000   0.000000 (  0.000008)

那么,has_css? have_css方法完全不同。

对于has_css?,Capybara正在等待超时到期。