summaryrefslogtreecommitdiffstats
path: root/tests/acceptance/features/step_definitions/create_new_steps.rb
blob: ff9b8b223a903f80099dbfdaa299f79afc1a48c9 (plain)
1
2
3
4
5
6
7
8
9
When (/^I hover over the add new button$/) do
	# FIXME: get this working with hover action
	page.execute_script("$('.list-title span').show()")
end

Then (/^I should see a "([^"]+)" caption on the add new button$/) do |caption|
	button = page.find(:xpath, "//li[contains(@class,\"add-new\")]/a/span[1]")
	button.should have_content(caption)
end