Skip to content

Instantly share code, notes, and snippets.

@thiagofm
Created September 13, 2012 14:17
Show Gist options
  • Save thiagofm/3714605 to your computer and use it in GitHub Desktop.
Save thiagofm/3714605 to your computer and use it in GitHub Desktop.
calculate_price_steps.rb
Given /^I'm on the landing page$/ do
visit '/'
end
When /^I select my plan, source, destination and time$/ do
#@options = { :plan => '120', :source => '018', :destination => '011', :time => '200' }
fill_in 'tempo', :with => '200'
select '120', :from => 'plano'
select '018', :from => 'origem'
select '011', :from => 'destino'
sleep 5
end
Then /^I get to know much I would pay for the call$/ do
page.should have_content('167')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment