-
-
Save BarnabeD/1a73397554fc09b208cce98af75e649c to your computer and use it in GitHub Desktop.
Select date and time for capybara-rspec from rails forms
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
def select_date(date, options = {}) | |
field = options[:from] | |
base_id = find(:xpath, ".//label[contains(.,'#{field}')]")[:for] | |
year, month, day = date.split(',') | |
select year, :from => "#{base_id}_1i" | |
select month, :from => "#{base_id}_2i" | |
select day, :from => "#{base_id}_3i" | |
end | |
def select_time(hour, minute, options = {}) | |
field = options[:from] | |
base_id = find(:xpath, ".//label[contains(.,'#{field}')]")[:for] | |
select hour, :from => "#{base_id}_4i" | |
select minute, :from => "#{base_id}_5i" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Creator explaination :
https://gist.github.com/lbspen/5674563#gistcomment-838843