-
-
Save aimeerivers/566045 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When /^(?:|I )select "([^\"]*)" as the "([^\"]*)" date$/ do |date, date_label| | |
select_date(date, :from => date_label) | |
end | |
DATE_TIME_SUFFIXES = { | |
:year => '1i', | |
:month => '2i', | |
:day => '3i', | |
:hour => '4i', | |
:minute => '5i' | |
} | |
def select_date(date_to_select, options ={}) | |
date = date_to_select.is_a?(Date) || date_to_select.is_a?(Time) ? | |
date_to_select : Date.parse(date_to_select) | |
id_prefix = id_prefix_for(options) | |
select date.year.to_s, :from => "#{id_prefix}_#{DATE_TIME_SUFFIXES[:year]}" | |
select date.strftime('%B'), :from => "#{id_prefix}_#{DATE_TIME_SUFFIXES[:month]}" | |
select date.day.to_s, :from => "#{id_prefix}_#{DATE_TIME_SUFFIXES[:day]}" | |
end | |
def id_prefix_for(options = {}) | |
msg = "cannot select option, no select box with id, name, or label '#{options[:from]}' found" | |
locate(:xpath, Capybara::XPath.select(options[:from]), msg)['id'].gsub(/_#{DATE_TIME_SUFFIXES[:year]}$/,'') | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment