Class: Mechanize::Form::CheckBox

Inherits:
RadioButton show all
Defined in:
lib/mechanize/form/check_box.rb

Overview

This class represents a check box found in a Form. To activate the CheckBox in the Form, set the checked method to true.

Instance Attribute Summary

Attributes inherited from RadioButton

#checked

Attributes inherited from Field

#name, #node, #value

Instance Method Summary collapse

Methods inherited from RadioButton

#[], #check, #click, #initialize, #label, #pretty_print_instance_variables, #text, #uncheck

Methods inherited from Field

#<=>, #dom_id, #initialize

Constructor Details

This class inherits a constructor from Mechanize::Form::RadioButton

Instance Method Details

#query_valueObject



6
7
8
# File 'lib/mechanize/form/check_box.rb', line 6

def query_value
  [[@name, @value || "on"]]
end