Skip to content

Instantly share code, notes, and snippets.

@leckylao
Created July 1, 2010 01:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leckylao/459447 to your computer and use it in GitHub Desktop.
Save leckylao/459447 to your computer and use it in GitHub Desktop.
Cucumter select datetime
# ripped from http://github.com/robholland/cucumber-rails/commit/10323c578906fe7a3ed2fdab090b7e326796b386
module Cucumber
module Rails
module CapybaraSelectDatesAndTimes
def select_date(field, options = {})
date = Date.parse(options[:with])
within(:xpath, Capybara::XPath.fieldset(field).append(%Q{//p[label[contains(., "#{field}")]]})) do
find(:xpath, '//select[contains(@id, "_1i")]').select(date.year)
find(:xpath, '//select[contains(@id, "_2i")]').select(date.strftime('%B'))
find(:xpath, '//select[contains(@id, "_3i")]').select(date.day) if find(:xpath, '//select[contains(@id, "_3i")]').present?
end
end
def select_time(field, options = {})
time = Time.parse(options[:with])
within(:xpath, Capybara::XPath.fieldset(field).append(%Q{//p[label[contains(., "#{field}")]]})) do
find(:xpath, '//select[contains(@id, "_4i")]').select(time.hour.to_s.rjust(2,'0'))
find(:xpath, '//select[contains(@id, "_5i")]').select(time.min.to_s.rjust(2,'0'))
end
end
def select_datetime(field, options = {})
select_date(field, options)
select_time(field, options)
end
end
end
end
World(Cucumber::Rails::CapybaraSelectDatesAndTimes)
When /^(?:|I )select "([^\"]*)" as the "([^\"]*)" time$/ do |time, selector|
select_time(selector, :with => time)
end
When /^(?:|I )select "([^\"]*)" as the "([^\"]*)" date$/ do |date, selector|
select_date(selector, :with => date)
end
When /^(?:|I )select "([^\"]*)" as the "([^\"]*)" date and time$/ do |datetime, selector|
select_datetime(selector, :with => datetime)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment