我知道/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
会救我,但它不接受计数。
帮助!
答案 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