Sha256: 3d97926292374400f0ec3735fc98fec63ab11a0ac2bd2686280ec9b85233fc7a
Contents?: true
Size: 708 Bytes
Versions: 17
Compression:
Stored size: 708 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
Version data entries
17 entries across 17 versions & 1 rubygems