This class represents a check box found in a Form. To activate the CheckBox in the Form, set the checked method to true.
[Source]
# File lib/mechanize/form_elements.rb, line 103 103: def query_value 104: [[@name, @value || "on"]] 105: end
[Validate]