Sha256: 5b1bda2c64e70a59f0f61210982fa8da1049b5b9775c46eeae829bd8dea58fe6

Contents?: true

Size: 706 Bytes

Versions: 23

Compression:

Stored size: 706 Bytes

Contents

When /^I go to (.*)$/ do |path|
  visit path
end

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

When /^I follow "(.*)"$/ do |link|
  click_link(link)
end

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

When /^I select "(.*)" from "(.*)"$/ do |value, field|
  select(value, :from => field) 
end

When /^I check "(.*)"$/ do |field|
  check(field) 
end

When /^I uncheck "(.*)"$/ do |field|
  uncheck(field) 
end

When /^I choose "(.*)"$/ do |field|
  choose(field)
end

When /^I submit the form named "(.*)"$/ do |name|
  submit_form(name)
end

When /^I attach the file at "(.*)" to "(.*)" $/ do |path, field|
  attach_file(field, path)
end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
auxesis-cucumber-nagios-0.3.8 lib/generators/project/features/steps/webrat_steps.rb
auxesis-cucumber-nagios-0.4.0 lib/generators/project/features/steps/webrat_steps.rb
auxesis-cucumber-nagios-0.4.1 lib/generators/project/features/steps/webrat_steps.rb
auxesis-cucumber-nagios-0.4.3 lib/generators/project/features/steps/webrat_steps.rb
auxesis-cucumber-nagios-0.4.4 lib/generators/project/features/steps/webrat_steps.rb
cucumber-nagios-0.7.6 lib/cucumber/nagios/steps/webrat_steps.rb
cucumber-nagios-0.7.5 lib/cucumber/nagios/steps/webrat_steps.rb
cucumber-nagios-0.7.4 lib/cucumber/nagios/steps/webrat_steps.rb
cucumber-nagios-0.7.3 lib/cucumber/nagios/steps/webrat_steps.rb
cucumber-nagios-0.7.2 lib/cucumber/nagios/steps/webrat_steps.rb
cucumber-nagios-0.7.1 lib/cucumber/nagios/steps/webrat_steps.rb
cucumber-nagios-0.7.0 lib/cucumber/nagios/steps/webrat_steps.rb
cucumber-nagios-0.6.8 lib/generators/project/features/steps/webrat_steps.rb
cucumber-nagios-0.6.7 lib/generators/project/features/steps/webrat_steps.rb
cucumber-nagios-0.6.6 lib/generators/project/features/steps/webrat_steps.rb
cucumber-nagios-0.6.5 lib/generators/project/features/steps/webrat_steps.rb
cucumber-nagios-0.6.4 lib/generators/project/features/steps/webrat_steps.rb
cucumber-nagios-0.6.3 lib/generators/project/features/steps/webrat_steps.rb
cucumber-nagios-0.6.2 lib/generators/project/features/steps/webrat_steps.rb
cucumber-nagios-0.6.1 lib/generators/project/features/steps/webrat_steps.rb