Class: Webrat::RadioField

Inherits:
Field show all
Defined in:
lib/webrat/core/elements/field.rb

Overview

:nodoc:

Instance Attribute Summary

Attributes inherited from Field

#value

Attributes inherited from Element

#element

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Field

#disabled?, field_class, field_classes, #id, inherited, #initialize, #label_text, load, #name, #raise_error_if_disabled, #set, #to_multipart_param, #unset

Methods inherited from Element

#initialize, #inspect, load, load_all, #path

Constructor Details

This class inherits a constructor from Webrat::Field

Class Method Details

.xpath_searchObject



280
281
282
# File 'lib/webrat/core/elements/field.rb', line 280

def self.xpath_search
  ".//input[@type = 'radio']"
end

Instance Method Details

#checked?Boolean

Returns:

  • (Boolean)


298
299
300
# File 'lib/webrat/core/elements/field.rb', line 298

def checked?
  Webrat::XML.attribute(@element, "checked") == "checked"
end

#chooseObject



289
290
291
292
293
294
295
296
# File 'lib/webrat/core/elements/field.rb', line 289

def choose
  raise_error_if_disabled
  other_options.each do |option|
    option.set(nil)
  end
  
  set(Webrat::XML.attribute(@element, "value") || "on")
end

#to_paramObject



284
285
286
287
# File 'lib/webrat/core/elements/field.rb', line 284

def to_param
  return nil if @value.nil?
  super
end