Sha256: 37757168c653b48794c5426e16ff6af3559ea07d25cf35aa7e3d16cfec8b52e1

Contents?: true

Size: 746 Bytes

Versions: 8

Compression:

Stored size: 746 Bytes

Contents

# Commonly used webrat steps
# http://github.com/brynary/webrat

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 attach the file at "(.*)" to "(.*)" $/ do |path, field|
  attach_file(field, path)
end

Then /^show me the page$/ do
  save_and_open_page
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
visage-app-2.1.0 features/step_definitions/webrat_steps.rb
visage-app-2.0.5 features/step_definitions/webrat_steps.rb
visage-app-2.0.4 features/step_definitions/webrat_steps.rb
visage-app-2.0.2 features/step_definitions/webrat_steps.rb
visage-app-2.0.0 features/step_definitions/webrat_steps.rb
visage-app-1.0.0 features/step_definitions/webrat_steps.rb
visage-app-0.9.6 features/step_definitions/webrat_steps.rb
visage-app-0.9.5 features/step_definitions/webrat_steps.rb