Class: Capybara::Driver::RackTest::Form

Inherits:
Node
  • Object
show all
Defined in:
lib/capybara/driver/rack_test_driver.rb

Instance Attribute Summary

Attributes inherited from Node

#driver, #node

Instance Method Summary collapse

Methods inherited from Node

#[], #click, #path, #select, #set, #tag_name, #text, #unselect, #visible?

Methods inherited from Node

#[], #click, #drag_to, #initialize, #path, #select, #set, #tag_name, #text, #trigger, #unselect, #value, #visible?

Methods included from Searchable

#all, #find, #find_button, #find_by_id, #find_field, #find_link

Constructor Details

This class inherits a constructor from Capybara::Node

Instance Method Details

#multipart?Boolean

Returns:

  • (Boolean)


155
156
157
# File 'lib/capybara/driver/rack_test_driver.rb', line 155

def multipart?
  self[:enctype] == "multipart/form-data"
end

#params(button) ⇒ Object



112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# File 'lib/capybara/driver/rack_test_driver.rb', line 112

def params(button)
  params = {}

  node.xpath(".//input[@type!='radio' and @type!='checkbox' and @type!='submit']").map do |input|
    merge_param!(params, input['name'].to_s, input['value'].to_s)
  end
  node.xpath(".//textarea").map do |textarea|
    merge_param!(params, textarea['name'].to_s, textarea.text.to_s)
  end
  node.xpath(".//input[@type='radio' or @type='checkbox']").map do |input|
    merge_param!(params, input['name'].to_s, input['value'].to_s) if input['checked']
  end
  node.xpath(".//select").map do |select|
    if select['multiple'] == 'multiple'
      options = select.xpath(".//option[@selected]")
      options.each do |option|
        merge_param!(params, select['name'].to_s, (option['value'] || option.text).to_s)
      end
    else
      option = select.xpath(".//option[@selected]").first
      option ||= select.xpath('.//option').first
      merge_param!(params, select['name'].to_s, (option['value'] || option.text).to_s) if option
    end
  end
  node.xpath(".//input[@type='file']").map do |input|
    unless input['value'].to_s.empty?
      if multipart?
        content_type = MIME::Types.type_for(input['value'].to_s).first.to_s
        file = Rack::Test::UploadedFile.new(input['value'].to_s, content_type)
        merge_param!(params, input['name'].to_s, file)
      else
        merge_param!(params, input['name'].to_s, File.basename(input['value'].to_s))
      end
    end
  end
  merge_param!(params, button[:name], button[:value] || "") if button[:name]
  params
end

#submit(button) ⇒ Object



151
152
153
# File 'lib/capybara/driver/rack_test_driver.rb', line 151

def submit(button)
  driver.submit(method, node['action'].to_s, params(button))
end