Sha256: 88b3dd3899372402a419b42fb2c86cb466a554b7a5a121a3420837c3b88cff38

Contents?: true

Size: 316 Bytes

Versions: 11

Compression:

Stored size: 316 Bytes

Contents

Given /^I am on (.+)$/ do |url|
  visit "http://www.youtube.com"
end

When /^I fill in "([^"]*)" with "([^"]*)"$/ do |field, value|
  fill_in(field, :with => value)
end

When /^I press "([^"]*)"$/ do |button|
  click_button(button)
end

Then /^I should see "([^"]*)"$/ do |text|
  page.should have_content(text)
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
testingbot-0.1.7 examples/cucumber/features/youtube_steps.rb
testingbot-0.1.6 examples/cucumber/features/youtube_steps.rb
testingbot-0.1.5 examples/cucumber/features/youtube_steps.rb
testingbot-0.1.4 examples/cucumber/features/youtube_steps.rb
testingbot-0.1.3 examples/cucumber/features/youtube_steps.rb
testingbot-0.1.2 examples/cucumber/features/youtube_steps.rb
testingbot-0.1.1 examples/cucumber/features/youtube_steps.rb
testingbot-0.1.0 examples/cucumber/features/youtube_steps.rb
testingbot-0.0.9 examples/cucumber/features/youtube_steps.rb
testingbot-0.0.8 examples/cucumber/features/youtube_steps.rb
testingbot-0.0.7 examples/cucumber/features/youtube_steps.rb