mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 16:20:12 +01:00
19 lines
429 B
Ruby
19 lines
429 B
Ruby
Given /this is a pending scenario/ do
|
|
pending
|
|
end
|
|
|
|
Then /the badge should show (.*)/ do |number|
|
|
badge = -1
|
|
xpath= "//span[@id='badge_count']"
|
|
|
|
if response.respond_to? :selenium
|
|
response.should have_xpath(xpath)
|
|
badge = response.selenium.get_text("xpath=#{xpath}").to_i
|
|
else
|
|
response.should have_xpath(xpath) do |node|
|
|
badge = node.first.content.to_i
|
|
end
|
|
end
|
|
|
|
badge.should == number.to_i
|
|
end
|