如何使用Capybara(或Webrat,我猜)和Cucumber检查多个单词的出现次数?

时间:2010-11-19 18:08:46

标签: ruby-on-rails ruby-on-rails-3 cucumber webrat capybara

我知道/Interface \d/在页面上出现了三次。但是我不知道如何用Cucumber中的Capybara进行测试。这是我的第一次尝试:

Then /^(?:|I )should see \/([^\/]*)\/ (\d+)(?:x|X| times?)?$/ do |regexp, count|
  regexp = Regexp.new(regexp)
  count = count.to_i
  if page.respond_to? :should
    page.should have_xpath('//*', { :text => regexp, :count => count })
  else
    assert page.has_xpath?('//*', { :text => regexp, :count => count })
  end
end

但是,这会为我的Then I should see /Interface \d+/ 3 times返回false。

我发现这是因为has_xpath使用all。把它放在我的测试中:

puts all(:xpath, '//*', { :text => regexp}).map {|e| pp e}

结果

#<Capybara::Element tag="html" path="/html">
#<Capybara::Element tag="body" path="/html/body">
#<Capybara::Element tag="div" path="/html/body/div">
#<Capybara::Element tag="div" path="/html/body/div/div[2]">
#<Capybara::Element tag="table" path="/html/body/div/div[2]/table">
#<Capybara::Element tag="tbody" path="/html/body/div/div[2]/table/tbody">
#<Capybara::Element tag="tr" path="/html/body/div/div[2]/table/tbody/tr[1]">
#<Capybara::Element tag="td" path="/html/body/div/div[2]/table/tbody/tr[1]/td[3]">
#<Capybara::Element tag="tr" path="/html/body/div/div[2]/table/tbody/tr[2]">
#<Capybara::Element tag="td" path="/html/body/div/div[2]/table/tbody/tr[2]/td[3]">
#<Capybara::Element tag="tr" path="/html/body/div/div[2]/table/tbody/tr[3]">
#<Capybara::Element tag="td" path="/html/body/div/div[2]/table/tbody/tr[3]/td[3]">

因此,我将了解包含文本的元素的每一步。 : - \

我想也许has_content会救我,但它不接受计数。

帮助!

1 个答案:

答案 0 :(得分:2)

这样的事情应该有效:

Then /^(?:|I )should see \/([^\/]*)\/ (\d+)(?:x|X| times?)?$/ do |regexp, count|
  regexp = Regexp.new(regexp)
  count = count.to_i
  page.find(:xpath, '//body').text.split(regexp).length.should == count+1
end