Skip to content

Instantly share code, notes, and snippets.

@cheezy
Created September 30, 2013 18:40
Show Gist options
  • Save cheezy/6768164 to your computer and use it in GitHub Desktop.
Save cheezy/6768164 to your computer and use it in GitHub Desktop.
updated steps
Given(/^We wish to enter a new product$/) do
visit ProductPage
#click_link 'New Product'
end
When(/^The following product is entered$/) do |table|
data = table.rows_hash
on(ProductPage) do |page|
page.title = data['title']
page.description = data['description']
page.create_product
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment