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/check_box.rb, line 6 6: def query_value 7: [[@name, @value || "on"]] 8: end
[Validate]